我正在使用eclipse开发一个Android应用程序。如何查看printstacktrace的输出?
答案 0 :(得分:4)
printstacktrace的输出可以在DDMS - > Logcat视图
中看到请使用Log来打印Logs。消息类型及其相关的方法调用是:
The Log.e() method is used to log errors.
The Log.w() method is used to log warnings.
The Log.i() method is used to log informational messages.
The Log.d() method is used to log debug messages.
The Log.v() method is used to log verbose messages.
The Log.wtf() method is used to log terrible failures that should never happen. (“WTF” stands for “What a Terrible Failure!” of course.)
要查看日志输出转到DDMS> logcat的
答案 1 :(得分:1)
在eclipse的android开发中,最好使用logcat。在eclipse中,转到Window / Show View / Other ...并从对话框中选择Android下的Logcat。
在调试模式下启动应用程序时,所有消息都将记录在那里。您可以使用过滤器隐藏来自系统或其他应用的消息。
答案 2 :(得分:0)
在Android中,您应该更喜欢Log
类方法printStackTrace()
。您可以在DDMS中的logcat中看到Log
输出。希望这会有所帮助。
答案 3 :(得分:0)
查看printstacktrace的输出..
使用Log
类方法..例如Log.i
,Log.v
等。
要查看日志输出,请转到DDMS > LogCat