我想在控制台中打印一些内容。我能做什么?因为System.out.println不起作用。有些人说它有效,有些人说dosnt工作。哪一个对吗? 感谢
答案 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");