首页 > 解决方案 > 在 SharedPreferences 中存储和检索目录 Uri

问题描述

我正在尝试使用 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(),结果相同。

我在这里做错了什么?

标签: androidsharedpreferencesuristorage

解决方案


我现在开始工作了。我尝试从 uri 字符串创建一个常规的 File 对象,而不是 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

推荐阅读