使用 Android 在 Eclipse 中查找堆栈跟踪

发布于 2024-10-16 23:06:34 字数 332 浏览 1 评论 0原文

不习惯使用 Eclipse for java,主要使用 jEdit,但随着 Android 开发而来的是 Eclipse。我已切换到调试窗口并按下启动我的应用程序的调试按钮,它崩溃了,但我找不到堆栈跟踪。我可以在“调试”窗格中看到它因“异常”而崩溃,但我看不到更多信息。不确定你是否能得到它,但我有点习惯 Visual Studio 的行号和更多信息来说明出了什么问题。正如我所说,我得到的只是 -

 'Thread [<1> main](Suspended (exception RuntimeException))'

在调试窗口中。谁能告诉我在哪里可以找到更多信息?

Not used to using Eclipse for java, mainly used jEdit but with the Android dev along comes Eclipse. I've switched to the debug window and pressed the debug button which starts my app, It crashes however I can't find the stack trace. I can see in the 'Debug' pane that it has crashed with a '' exception however I can't see any more information. Not sure if you can get it but I'm a little used to Visual Studio with line numbers and a bit more information saying what went wrong. As I said all I'm getting is -

 'Thread [<1> main](Suspended (exception RuntimeException))'

in the debug window. Can anyone shed some light as to where I can find more information?

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

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

发布评论

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

评论(4

隐诗 2024-10-23 23:06:34

对于 Eclipse 中的正常 Java 开发,堆栈跟踪将出现在控制台视图中:(

Window -> Show view -> Console

如果未列出,请单击“其他”并找到“控制台”)。

在处理 Android 开发时,请找到 "LogCat" 视图,就像我上面描述的那样。堆栈跟踪应该在那里。

For normal Java development in Eclipse, stack traces will appear in console view:

Window -> Show view -> Console

(if it isn't listed, click on "Other" and find "Console").

When dealing with Android development, find the "LogCat" view, like I described above. The stack trace should be there.

丿*梦醉红颜 2024-10-23 23:06:34

查看 DDMS 透视图和 LogCat 视图。 Android 记录所有内容,可以使用 LogCat 查看。

Check out the DDMS perspective and LogCat view. Android logs everything, what can be viewed with LogCat.

长途伴 2024-10-23 23:06:34

您可以直接在命令提示符下键入adb logcat,它将显示堆栈跟踪。

有关更多信息,请参阅此页面:http://developer.android.com /guide/developing/tools/adb.html#logcat

You can directly type the adb logcat at the command prompt, it will display the stack traces.

For more info, refer this page: http://developer.android.com/guide/developing/tools/adb.html#logcat

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