存储和检索目录 Uri to/from SharedPreferences
Storing and retrieving a directory Uri to/from SharedPreferences
我正在尝试使用 SharedPreferences 存储和检索目录 Uri,但无法正常工作。
这是我当前用于在用户选择目录后保留目录路径的代码:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
switch(requestCode) {
case ACTIVITY_DOCUMENT_TREE:
if(resultCode == RESULT_OK) {
Uri treeUri = data.getData();
DocumentFile pickedDir = DocumentFile.fromTreeUri(getActivity(), treeUri);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
SharedPreferences.Editor editor = prefs.edit();
editor.putString("the_file", pickedDir.getUri().toString());
editor.apply();
}
break;
}
}
这是我当前从 SharedPreferences 加载目录的代码:
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
String path = prefs.getString("the_file", null);
// the value is:
// content://com.android.externalstorage.documents/tree/primary%3APictures%2FMyApp/document/primary%3APictures%2FMyApp
Uri uri = Uri.parse(path);
File f = new File(uri.toString());
// to test if it was successful, listFiles() - this leads to a NullPointerException
f.listFiles();
// java.lang.NullPointerException: Attempt to get length of null array
代替uri.toString(),我也尝试了uri.getPath(),结果相同。
我做错了什么?
我现在开始工作了。我尝试从 uri 字符串创建一个常规文件对象,而不是 DocumentFile。
这是调整后的代码:
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
String path = prefs.getString("the_file", null);
Uri uri = Uri.parse(path);
DocumentFile dir = DocumentFile.fromTreeUri(getActivity(), uri);
dir.listFiles(); // working fine now
我正在尝试使用 SharedPreferences 存储和检索目录 Uri,但无法正常工作。
这是我当前用于在用户选择目录后保留目录路径的代码:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
switch(requestCode) {
case ACTIVITY_DOCUMENT_TREE:
if(resultCode == RESULT_OK) {
Uri treeUri = data.getData();
DocumentFile pickedDir = DocumentFile.fromTreeUri(getActivity(), treeUri);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
SharedPreferences.Editor editor = prefs.edit();
editor.putString("the_file", pickedDir.getUri().toString());
editor.apply();
}
break;
}
}
这是我当前从 SharedPreferences 加载目录的代码:
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
String path = prefs.getString("the_file", null);
// the value is:
// content://com.android.externalstorage.documents/tree/primary%3APictures%2FMyApp/document/primary%3APictures%2FMyApp
Uri uri = Uri.parse(path);
File f = new File(uri.toString());
// to test if it was successful, listFiles() - this leads to a NullPointerException
f.listFiles();
// java.lang.NullPointerException: Attempt to get length of null array
代替uri.toString(),我也尝试了uri.getPath(),结果相同。
我做错了什么?
我现在开始工作了。我尝试从 uri 字符串创建一个常规文件对象,而不是 DocumentFile。
这是调整后的代码:
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
String path = prefs.getString("the_file", null);
Uri uri = Uri.parse(path);
DocumentFile dir = DocumentFile.fromTreeUri(getActivity(), uri);
dir.listFiles(); // working fine now