我已经编写了一个获取当前时间的函数
在另一个函数中调用此函数时,我正在Logcat中获取当前时间。谁能帮我将其存储在android studio的外部存储中。
注意:我已添加 在manifest.xml中。
答案 0 :(得分:1)
try {
File file = new File(Environment.getExternalStorageDirectory(), "time.txt");
FileWriter fw = new FileWriter(file);
PrintWriter pw = new PrintWriter(fw);
String currentTime = "";//call here your method which gives you current time
pw.println(currentTime);
pw.close();
fw.close();
} catch (Exception e) {
e.printStackTrace();
}
别忘了添加权限