在我的应用程序中,我需要将地图保存到SD卡。我能够创建目录和文件,但在该文件中没有保存任何内容。如何保存显示的地图?请帮我解决我的问题...
File myDir=new File("/sdcard/ma");
myDir.mkdirs();
Random generator = new Random();
int n = 10000;
n = generator.nextInt(n);
String fname = "Image-"+ n +".jpg";
File file = new File (myDir, fname);
if (file.exists ()) file.delete ();
try {
FileOutputStream out = new FileOutputStream(file);
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
}
I added permissions in android manifest file
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />