如何在没有 DDMS 的情况下打开 .trace 文件格式(traceview)?

发布于 2024-10-11 18:13:23 字数 178 浏览 5 评论 0 原文

我想保存方法调用的日志。 Traceview 支持该功能,我可以获得 .trace 文件格式。

但是,我需要在没有 DDMS 的情况下打开 .trace 文件格式。

如果我无法在没有 DDMS 的情况下打开 .trace 文件,如何获取方法调用的日志? (最好是 .txt 文件格式。)

谢谢。

I want to save a log of method calls.
Traceview supports that function and I can get .trace file format.

but, I need to open .trace file format without DDMS.

If I can't open .trace file without DDMS, How can I get a log of method calls?
(The best is .txt file format.)

thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

不打扰别人 2024-10-18 18:13:23

这是一个旧线程。
因为我在这里找到的,所以其他人可能也需要这个。
试试这个:

traceview -r yourtrace.trace > 1.txt

看看 1.txt 有什么对你有用的东西。

It is an old thread.
because I found here, so other guys may need this, too.
Try this:

traceview -r yourtrace.trace > 1.txt

and look 1.txt has any useful thing to u.

抹茶夏天i‖ 2024-10-18 18:13:23

“traceview”是一个命令行实用程序。您不需要从 DDMS 启动它。

如果您只需要包含时间和消息名称的文本文件,可以使用“dmtracedump -o file.trace”。

"traceview" is a command-line utility. You don't need to launch it from DDMS.

If you just want a text file with times and message names, you can use "dmtracedump -o file.trace".

心病无药医 2024-10-18 18:13:23

其一,您应该使用 DDMS,它使用起来非常简单。即使您没有 eclipse,您也可以使用 SDK 附带的那个。但是,如果您已经可以访问 tracefile.trace 那么您可以简单地使用 Traceview。只需打开命令提示符并导航到 android SDK/tools 目录,如下所示:cd C:\Program Files\Android\android-sdk\tools。一旦出现,只需输入 traceview 后跟文件名(可以省略 .trace),如下所示:traceview C:\Users\Sino\Desktop\Janky_trace_file。这应该以 GUI 表示形式打开跟踪文件,并具有深入研究方法调用的功能。

Well for one, you should just use DDMS it's very simple to work with. Even if you don't have eclipse you can use the one that shipped with the SDK. However, if you already have access to the tracefile.trace then you could simply use Traceview from the SDK. Simply open your command prompt and navigate to your android SDK/tools directory as such: cd C:\Program Files\Android\android-sdk\tools. Once there simply type traceview followed by the filename (can omit .trace) as such: traceview C:\Users\Sino\Desktop\Janky_trace_file. This should open your trace file in a GUI representation with functionality to delve into your method calls.

彼岸花ソ最美的依靠 2024-10-18 18:13:23

这很简单。
Eclipse:文件 -->打开文件-->打开traveview文件(xxxx.trace)

This is simple.
Eclipse: File --> Open file --> open traveview file (xxxx.trace)

人事已非 2024-10-18 18:13:23

如果您有“.trace”文件,只需从命令行使用“traceview”,您应该能够查看该文件的内容。
您可以使用命令行工具“dmtracedump”使用现有的 .trace 文件生成各种图形。 http://developer.android.com/tools/help/dmtracedump.html

If you have a ".trace" file, just use "traceview " from the command line and you should be able to view the content of the file.
You can generate various graphs with the existing .trace file using the command line tool "dmtracedump". http://developer.android.com/tools/help/dmtracedump.html.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文