Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以写入日志命令行中写入的文件?我的意思是,我有我的代码,为了在 Eclipse 中查看日志,我写了类似的东西
Log.i("BR", "Log Example");
是否可以将 sring 写入"Log Example"文件?或者,是否有一种解决方案可以编写一个报告文件,其中每 10 分钟存储一次应用程序的一些操作?
"Log Example"
@ user1281750该类Log使用静态方法,技术上无法覆盖,但是是的,您可以扩展该类并为这些方法创建包装器。
Log
但是,我建议改用log4j之类的库。或者,如果我的预感是正确的,您可能正在寻找类似ACRA的东西。