文件可以用 fs 放在应用沙箱路径下,fs 参考 https://developer.huawei.com/consumer/cn/doc/harmonyos-refere... ;当前没有权限直接访问,只能通过 fs 进行读取。
LogcatLog.d("TAG", "Log message"); adb logcat -s TAG 保存日志到文件try (PrintWriter writer = new PrintWriter(new FileWriter("/data/local/tmp/logfile.txt", true))) { writer.println("Log message"); } catch (IOException e) { e.printStackTrace(); } adb pull /data/local/tmp/logfile.txt HarmonyOS 日志 APILogger.info("TAG", "Log message");
文件可以用 fs 放在应用沙箱路径下,fs 参考 https://developer.huawei.com/consumer/cn/doc/harmonyos-refere... ;当前没有权限直接访问,只能通过 fs 进行读取。