在 Eclipse 上,为 Android 开发,我在哪里可以看到 System.out.println() 的输出?
我在 eclipse 上使用 Android 开发工具,加上 Java(显然)。我对 Java 很陌生,我不知道在哪里可以看到输出。我尝试了显而易见的方法:控制台,但字符串不在那里。我尝试了 Logcat,但该字符串也不存在。
提前致谢!
I'm using the Android Developer Tools on eclipse, plus Java (obviously). I'm quite new to Java, and i don't know where the output can be seen. I tried the obvious: the console, but the string wasn't there. I tried the Logcat, but the string wasn't there either.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您不在 Android 上使用
System.out.println()
。您可以使用Log.v()
、Log.d()
等。此处的文档。
You don't use
System.out.println()
on Android. You useLog.v()
,Log.d()
, etc.Documentation here.
这会显示在 Logcat 中。进入Windows - Show Views -> 可以选择显示Logcat安卓->日志猫。
This is displayed in the Logcat. You can choose to display Logcat if you go to Windows - Show Views -> Android -> Logcat.
如果您希望在电话上获得视觉响应,请使用 Toast。
http://developer.android.com/guide/topics/ui/notifiers /toasts.html
If you want a visual response on the phone, use Toast.
http://developer.android.com/guide/topics/ui/notifiers/toasts.html
您可以使用 Log.e()、Log.v()、Log.d() 来显示输出或异常,您可以在 logcat 中看到。
You can use Log.e(),Log.v(),Log.d() for displaying output or exception and you can see that in logcat.
@EboMike 是对的,无论如何,你可以在 LogCat 视图中看到输出
假设你已经安装了 Android 的 ADT 插件。
@EboMike is right, anyway, you can see the output in the LogCat view
Assumes, that you have Android's ADT plugin installed.