gpt4 book ai didi

java - 在 Android 中创建文件夹

转载 作者:IT老高 更新时间:2023-10-28 20:56:29 25 4
gpt4 key购买 nike

 import java.io.File;  
File folder = new File(Environment.getExternalStorageDirectory() + "/TollCulator");
boolean success = true;
if (!folder.exists()) {
//Toast.makeText(MainActivity.this, "Directory Does Not Exist, Create It", Toast.LENGTH_SHORT).show();
success = folder.mkdir();
}
if (success) {
//Toast.makeText(MainActivity.this, "Directory Created", Toast.LENGTH_SHORT).show();
} else {
//Toast.makeText(MainActivity.this, "Failed - Error", Toast.LENGTH_SHORT).show();
}

如果它不存在,上面应该在我的 SD 卡中创建一个文件夹,如果它存在则不做任何事情。虽然 toast 根据条件工作,但是当它不存在时它不会创建目录。知道如何解决吗?

我的 Manifest 看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.testing"
android:versionCode="1"
android:versionName="1.0" >

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

<uses-sdk
android:minSdkVersion="6"
android:targetSdkVersion="17" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.test.testing.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

更新:我更新了 list 并更新了我的代码,但它仍然没有在我的 SD 卡中创建文件夹。请记住,我正在使用 Eclipse 并将应用程序直接运行到我的手机 (GNex VZW) 而不是使用 AVD。

最佳答案

Manifest 中添加此权限,
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

File folder = new File(Environment.getExternalStorageDirectory() + 
File.separator + "TollCulator");
boolean success = true;
if (!folder.exists()) {
success = folder.mkdirs();
}
if (success) {
// Do something on success
} else {
// Do something else on failure
}

when u run the application go too DDMS->File Explorer->mnt folder->sdcard folder->toll-creation folder

关于java - 在 Android 中创建文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17794974/

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