我想从我的资产中的特定目录中获取我的html文件列表.

有代码>>

private List ListDir(String directory) {

List result = new ArrayList();

AssetManager am = getActivity().getAssets();

String[] files=null;

try {

files = am.list(directory);

} catch (IOException e) {

e.printStackTrace();

}

fileList.clear();

for (String file : files) {

result.add(file);

}

return result;

}

如何以.html文件过滤我的文件?

解决方法:

只需使用endsWith(“.xml”).

for (String file : files) {

if(file.toLowerCase().endsWith(".xml")){

result.add(file);

}

}

标签:android,android-assets,android-file

来源: https://codeday.me/bug/20190703/1367927.html

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐