Why doesn#39;t quot;System.out.printlnquot; work in Android?(为什么没有“System.out.println?在安卓上工作?)
问题描述
我想在控制台打印一些东西,以便调试它.但由于某种原因,我的 Android 应用程序中没有打印任何内容.
那我该如何调试呢?
公共类 HelloWebview 扩展 Activity {WebView 网络视图;私有静态最终字符串 LOG_TAG = "WebViewDemo";私有类 HelloWebViewClient 扩展 WebViewClient {@覆盖public boolean shouldOverrideUrlLoading(WebView view, String url) {view.loadUrl(url);返回真;}}/** 在第一次创建活动时调用.*/@覆盖公共无效 onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);设置内容视图(R.layout.main);webview = (WebView) findViewById(R.id.webview);webview.setWebViewClient(new HelloWebViewClient());webview.getSettings().setJavaScriptEnabled(true);webview.setWebChromeClient(new MyWebChromeClient());webview.loadUrl("http://example.com/");System.out.println("我在这里");}
更正:
在模拟器和大多数设备上,System.out.println
被重定向到 LogCat 并使用 Log.i()
打印.在非常旧的或自定义的 Android 版本上,这可能不是真的.
原文:
没有将消息发送到的控制台,因此 System.out.println
消息会丢失.同样,当您使用 javaw
运行传统"Java 应用程序时,也会发生这种情况.
相反,您可以使用
每个日志调用的第一个条目是标识日志消息来源的日志标记.这很有帮助,因为您可以过滤日志的输出以仅显示您的消息.为确保您与日志标签一致,最好将其定义为 static final String
某处.
Log.d(MyActivity.LOG_TAG,"应用程序已启动");
Log
中有5个单字母方法,分别对应以下级别:
e()
- 错误w()
- 警告i()
- 信息d()
- 调试v()
- 详细wtf()
- 多么可怕的失败
文档对级别进行了如下说明:
<块引用>除非在开发过程中,否则绝不应将详细信息编译到应用程序中.调试日志被编译,但在运行时被剥离.始终保留错误、警告和信息日志.
I want to print something in console, so that I can debug it. But for some reason, nothing prints in my Android application.
How do I debug then?
public class HelloWebview extends Activity {
WebView webview;
private static final String LOG_TAG = "WebViewDemo";
private class HelloWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
}
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
webview = (WebView) findViewById(R.id.webview);
webview.setWebViewClient(new HelloWebViewClient());
webview.getSettings().setJavaScriptEnabled(true);
webview.setWebChromeClient(new MyWebChromeClient());
webview.loadUrl("http://example.com/");
System.out.println("I am here");
}
Correction:
On the emulator and most devices System.out.println
gets redirected to LogCat and printed using Log.i()
. This may not be true on very old or custom Android versions.
Original:
There is no console to send the messages to so the System.out.println
messages get lost. In the same way this happens when you run a "traditional" Java application with javaw
.
Instead, you can use the Android Log
class:
Log.d("MyApp","I am here");
You can then view the log either in the Logcat view in Eclipse, or by running the following command:
adb logcat
It's good to get in to the habit of looking at logcat output as that is also where the Stack Traces of any uncaught Exceptions are displayed.
The first Entry to every logging call is the log tag which identifies the source of the log message. This is helpful as you can filter the output of the log to show just your messages. To make sure that you're consistent with your log tag it's probably best to define it once as a static final String
somewhere.
Log.d(MyActivity.LOG_TAG,"Application started");
There are five one-letter methods in Log
corresponding to the following levels:
e()
- Errorw()
- Warningi()
- Informationd()
- Debugv()
- Verbosewtf()
- What a Terrible Failure
The documentation says the following about the levels:
Verbose should never be compiled into an application except during development. Debug logs are compiled in but stripped at runtime. Error, warning and info logs are always kept.
这篇关于为什么没有“System.out.println"?在安卓上工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么没有“System.out.println"?在安卓上工作


基础教程推荐
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01