System.out.println在Android中有效吗?

时间:2011-04-29 16:27:16

标签: android printing android-logcat

  

可能重复:
  Why doesn't System.out.println work? (in Android)

我想在控制台中打印一些内容。我能做什么?因为System.out.println不起作用。有些人说它有效,有些人说dosnt工作。哪一个对吗? 感谢

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:1)

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

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