4

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

有代码>>

private List<String> ListDir(String directory) {
    List<String> result = new ArrayList<String>();
    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 文件?

4

1 回答 1

4

只需使用endsWith(".xml").

for (String file : files) {
    if(file.toLowerCase().endsWith(".xml")){
        result.add(file);
     }

}
于 2013-09-21T12:18:56.530 回答