Sytem.out.println 在 Android 中工作吗?

发布于 2024-11-04 03:46:43 字数 299 浏览 1 评论 0原文

可能的重复:
为什么 System.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 技术交流群。

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

发布评论

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

评论(2

风吹过旳痕迹 2024-11-11 03:46:43

System.out.println() 有效,Log.d("TAG", "message"); 也有效,但您需要在 eclipse 中打开 LogCat 视图并不是控制台视图。

System.out.println() works, also Log.d("TAG", "message"); works, but you need to open the LogCat view in eclipse and not the console view.

坐在坟头思考人生 2024-11-11 03:46:43

您应该使用 android SDK 中的 Log 类。 http://developer.android.com/reference/android/util/Log.html

喜欢

final string tag = "myApp";
Log.d(tag,"hello world");

You should use the Log class from the android SDK. http://developer.android.com/reference/android/util/Log.html

like

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