Sytem.out.println 在 Android 中工作吗?
我想将一些内容打印到控制台中。我能做些什么?因为 System.out.println 不起作用。有些人说有效,但有些人说不起作用。哪一个对呢? 谢谢
Possible Duplicate:
Why doesn't System.out.println work? (in Android)
I want to print something into console. What can I do? because System.out.println doesnt work. Some people says it works bur some of them says dosnt work. Which one right?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
System.out.println()
有效,Log.d("TAG", "message"); 也有效,但您需要在 eclipse 中打开 LogCat 视图并不是控制台视图。
System.out.println()
works, alsoLog.d("TAG", "message");
works, but you need to open the LogCat view in eclipse and not the console view.您应该使用 android SDK 中的 Log 类。 http://developer.android.com/reference/android/util/Log.html
喜欢
You should use the Log class from the android SDK. http://developer.android.com/reference/android/util/Log.html
like