-1

是否可以在 android 手机上为要存储的图像(通过我的应用程序拍摄)创建一个新文件夹?(或就我而言的SD卡)。我可以将它命名为我喜欢的名称[也许是我的应用程序的名称,以便轻松找到文件],然后通过我的应用程序启动相机拍摄的图像将存储在那里。我认为这可能与乌里的有关。(只是猜测。)

4

3 回答 3

4

使用此代码

String root = Environment.getExternalStorageDirectory().toString();
File myDir = new File(root + "/saved_images");   
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);
       finalBitmap.compress(Bitmap.CompressFormat.JPEG, 90, out);
       out.flush();
       out.close();

} catch (Exception e) {
       e.printStackTrace();
}

并将其添加到清单中

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 

检查此链接 Android将文件保存到外部存储

于 2012-06-16T05:49:23.797 回答
1

只需为此使用文件操作..

File imageDirectory = new File("/sdcard/Images/"); // Path for location where you want to make directory, Internal or External storage
// have the object build the directory structure, if needed.
imageDirectory.mkdirs();

并在应用程序的清单文件中放置权限..

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
于 2012-06-16T05:45:14.883 回答
1

为什么不?

String path = Environment.getExternalStorageDirectory().getAbsoluteFile() + "/YourAppRootDir"; 
File dir = new File(path);
dir.mkdirs();
于 2012-06-16T05:46:00.573 回答