gpt4 book ai didi

java - android: mkdirs() 返回 false

转载 作者:行者123 更新时间:2023-12-01 11:07:42 26 4
gpt4 key购买 nike

有人可以告诉我,为什么我的应用程序无法创建目录?这是我的代码:

package com.example.android.myapplication;

import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.os.Environment;

import java.io.File;


public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
File dir = new File(Environment.getExternalStorageDirectory().getAbsolutePath()
+ File.separator + "meinordner");
if(!dir.exists()) {
boolean s = dir.mkdirs();
if(!s) {
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setMessage("could not create dir");
alert.show();
}
}
}

}

和我的 list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.myapplication" >
<uses-permission android:name="ANDROID.PERMISSION.WRITE_EXTERNAL_STORAGE"/>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".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>

当我执行应用程序时,会显示警报。我什至尝试在手机未连接到计算机时启动应用程序,因此存储空间未安装在其他地方

最佳答案

首先,更改:

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

至:

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

二、改变:

new File(Environment.getExternalStorageDirectory().getAbsolutePath()
+ File.separator + "meinordner");

至:

new File(Environment.getExternalStorageDirectory(), "meinordner");

关于java - android: mkdirs() 返回 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32763748/

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