如何在没有 DDMS 的情况下打开 .trace 文件格式(traceview)?
我想保存方法调用的日志。 Traceview 支持该功能,我可以获得 .trace 文件格式。
但是,我需要在没有 DDMS 的情况下打开 .trace 文件格式。
如果我无法在没有 DDMS 的情况下打开 .trace 文件,如何获取方法调用的日志? (最好是 .txt 文件格式。)
谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是一个旧线程。
因为我在这里找到的,所以其他人可能也需要这个。
试试这个:
看看 1.txt 有什么对你有用的东西。
It is an old thread.
because I found here, so other guys may need this, too.
Try this:
and look 1.txt has any useful thing to u.
“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".
其一,您应该使用 DDMS,它使用起来非常简单。即使您没有 eclipse,您也可以使用 SDK 附带的那个。但是,如果您已经可以访问
tracefile.trace
那么您可以简单地使用Traceview
。只需打开命令提示符并导航到 androidSDK/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 useTraceview
from the SDK. Simply open your command prompt and navigate to your androidSDK/tools
directory as such:cd C:\Program Files\Android\android-sdk\tools
. Once there simply typetraceview
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.这很简单。
Eclipse:文件 -->打开文件-->打开traveview文件(xxxx.trace)
This is simple.
Eclipse: File --> Open file --> open traveview file (xxxx.trace)
如果您有“.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.