gpt4 book ai didi

Java android 获取文件中的日志

转载 作者:行者123 更新时间:2023-12-02 12:30:57 25 4
gpt4 key购买 nike

这是我从应用程序获取日志的方式:

try {
SimpleDateFormat sdf = new SimpleDateFormat(
"yyyy-MM-dd", Locale.US);
String currentDateandTime = sdf.format(new Date());
final File path = new File(Environment.getExternalStorageDirectory(), "SMOK_komunal");
if (!path.exists()) {
path.mkdir();
}
Log.e("path ", path.getAbsolutePath());
Runtime.getRuntime().exec("logcat -f " + path + File.separator + "dbo_logcat_" + currentDateandTime + ".txt");
} catch (IOException e) {
e.printStackTrace();
}

但是在此日志中,我没有行中的日期和时间,如何添加日期和时间?

最佳答案

要获取日期和时间打印日志,如下所示:

 Log.e("path ", path.getAbsolutePath()+ " and "+currentDateandTime );

它将给出文件路径以及日期和时间

关于Java android 获取文件中的日志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45304080/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com