- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我想创建类似“PDF 查看器应用程序”的东西。应用程序将在用户选择的位置搜索所有 *.pdf 文件。用户可以通过这个函数选择这个文件夹:
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE);
startActivityForResult(intent, REQUEST_CODE);
然后我得到 DocumentFile(文件夹):
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == getActivity().RESULT_OK && requestCode == REQUEST_CODE) {
Uri uriTree = data.getData();
DocumentFile documentFile = DocumentFile.fromTreeUri(getActivity(), uriTree);
//rest of code here
}
}
为什么我选择这种选择文件夹的方式?因为我想让选择辅助存储成为可能(你知道,在 Android >= 5.0 中,你不能使用 Java.io.file 访问辅助存储)。
好的,所以我得到了所有 *.pdf 作为文档文件的文件夹。然后我打电话:
for(DocumentFile file: documentFile.listFiles()){
String fileNameToDisplay = file.getName();
}
这非常慢。当所选文件夹中有约 600 个文件时,大约需要 30 秒。为了证明这一点,我选择了外部存储(不是二级存储)中的目录,然后我尝试了两种解决方案:DocumentFile 和 File。文件版本如下所示:
File f = new File(Environment.getExternalStorageDirectory()+"/pdffiles");
for(File file: f.listFiles()){
String fileNameToDisplay = file.getName();
}
}
第二个版本的运行速度提高了大约 500 倍。几乎没有时间在 ListView 中显示所有文件。
为什么 DocumentFile 这么慢?
最佳答案
如果您阅读 source code TreeDocumentFile
,您会发现每次调用 listFiles()
和 getName()
都会调用 ContentResolver#query()
在引擎盖下。正如 CommonsWare 所说,这将执行数百个查询,效率非常低。
这里是listFiles()
的源代码:
@Override
public DocumentFile[] listFiles() {
final ContentResolver resolver = mContext.getContentResolver();
final Uri childrenUri = DocumentsContract.buildChildDocumentsUriUsingTree(mUri,
DocumentsContract.getDocumentId(mUri));
final ArrayList<Uri> results = new ArrayList<>();
Cursor c = null;
try {
c = resolver.query(childrenUri, new String[] {
DocumentsContract.Document.COLUMN_DOCUMENT_ID }, null, null, null);
while (c.moveToNext()) {
final String documentId = c.getString(0);
final Uri documentUri = DocumentsContract.buildDocumentUriUsingTree(mUri,
documentId);
results.add(documentUri);
}
} catch (Exception e) {
Log.w(TAG, "Failed query: " + e);
} finally {
closeQuietly(c);
}
final Uri[] result = results.toArray(new Uri[results.size()]);
final DocumentFile[] resultFiles = new DocumentFile[result.length];
for (int i = 0; i < result.length; i++) {
resultFiles[i] = new TreeDocumentFile(this, mContext, result[i]);
}
return resultFiles;
}
在此函数调用中,listFiles()
进行了仅选择文档 ID 列的查询。但是,在您的情况下,您还需要每个文件的文件名。因此,您可以将列 COLUMN_DISPLAY_NAME
添加到查询中。这将在单个查询中检索文件名和文档 ID(稍后您会将其转换为 Uri)并且效率更高。还有许多其他可用的列,例如文件类型、文件大小和上次修改时间,您可能还想检索它们。
c = resolver.query(mUri, new String[] {
DocumentsContract.Document.COLUMN_DOCUMENT_ID,
DocumentsContract.Document.COLUMN_DISPLAY_NAME
}, null, null, null);
在 while 循环中,通过以下方式检索文件名
final String filename = c.getString(1);
上述修改后的代码能够立即检索包含 1000 多个文件的目录的 Uri 和文件名。
总而言之,如果您处理的文件不止几个,我的建议是避免使用 DocumentFile
。而是使用 ContentResolver#query()
通过在查询中选择多个列来检索 Uri 和其他信息。对于文件操作,通过传递适当的 Uri,使用 DocumentsContract
类中的静态方法。
顺便说一下,在 Android 11 和 Android 9 上测试时,ContentResolver#query()
的 sortOrder
参数似乎在上面的代码 fragment 中被完全忽略了。我会手动对结果进行排序,而不是依赖查询顺序。
关于java - 为什么 DocumentFile 这么慢,我应该用什么来代替?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42186820/
我可以只用 JavaScript 编写我的网站,并确保我的代码对任何人隐藏吗?在这方面,Node.js 是否可以像 Apache 一样通过互联网提供商访问? 最佳答案 您的两个问题的答案都是是。 No
正文应仅包含 bool 而不是 json 对象或数据。 我已经尝试将 bool 转换为 JSON 中的类型。 request.httpMethod = "PUT" let sessio
假设我们有这个html内容,我们愿意用正则表达式得到Content1, Content2,.. Content1 Content2 Content3 Content4 如果我使用下面的行 preg_m
1、LUA获取utf8字符串长度 复制代码 代码如下: --- 获取utf8编码字符串正确长度的方法 -- @param str -- @return number f
我刚刚观察到 if 而不是 -> , 我写 =>在函数的类型签名定义中,它不会导致编译时错误。示例代码: mysum :: Num a => [a] => a -- Notice => after t
所以我试图替换字符串中的任何非字母数字字符,包括空格。我找到了一个可行的解决方案,但感觉很糟糕。我不需要两个单独的替换函数来完成此操作,但我不知道如何正确合并它们。我在网上找到的所有文档都没有解决这个
我有一个字符串 'abc.132131.001.3' 。我想将每次出现的 '.' 替换为 '~'. 我用过 str.replace(/[.*?^${}()|[\]\\]/g, "\~$&"); 但是这
我有这个; let subs = []; for ( const item of items ) { // array for ( const sub of item ) { //
考虑下面来自 this AngularJS tutorial 的代码片段: app.factory('Auth', function ($firebaseSimpleLogin, FIREBASE
出于培训原因,我想编写一个小计算器。为什么要计算 10-6 = 16 而不是 10-6 = 4? 我得到了错误: Assertion Failed! Expression: calc("10-6")
代码如下: /// <summary> /// 将指定字符串按指定长度进行剪切, &nbs
假设我有以下示例: 示例一 $('.my_Selector_Selected_More_Than_One_Element').each(function() { $(this).stuff()
自 Flutter 1.12 发布以来,我的以下代码用于重新启动应用程序: final MyAppState state = context.ancestorStateOfType(const Typ
这行是什么意思: bool operator() (const song& s); I am not able to understand that line with operator. Is op
我在使用 mimetype="text/plain"的 django 模板时遇到了一些问题。 首先,url 的 s3 部分以 :80 结尾,然后实际图像 url 以 '%2f' 代替每个斜杠呈现。 o
目前,如果任意(OR)条件为true,.is()的结果将返回true,如何我是否让它使用AND,即仅在满足所有条件时返回true? if ($('#search-form #valid_only').
我用 C 语言创建了一个非常简单的链表程序。 #include #include int main(){ struct Int{ int num; struct
我有以下无法更改的 HTML 输出: link1;;;link 我怎样才能摆脱;所以结果变成: 链接1;链接2 这是我最好的尝试: var test = new String($(this).html
我有以下查询,它给出了正确的结果,但我想使用不存在而不是不存在。 select cust_name from customer where cust_id not in (select c
我使用 SilverStripe 3.5.6 进行自定义搜索,它将所有关键字分解为一个数组,并且仅返回包含所有单词的结果,而不返回包含其中一个单词的结果。 这只是脚本的一小部分,但这就是我使用过滤器功
我是一名优秀的程序员,十分优秀!