我有一个HTML文件的某些文件夹在我的Android项目中的“资产”文件夹中。 我需要在列表中显示的资产子文件夹,这些HTML文件。 我已经写了一篇关于制作这个名单的一些代码。
lv1 = (ListView) findViewById(R.id.listView);
// Insert array in ListView
// In the next row I need to insert an array of strings of file names
// so please, tell me, how to get this array
lv1.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, filel));
lv1.setTextFilterEnabled(true);
// onclick items in ListView:
lv1.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> a, View v, int position, long id) {
//Clicked item position
String itemname = new Integer(position).toString();
Intent intent = new Intent();
intent.setClass(DrugList.this, Web.class);
Bundle b = new Bundle();
//I don't know what it's doing here
b.putString("defStrID", itemname);
intent.putExtras(b);
//start Intent
startActivity(intent);
}
});
private boolean listAssetFiles(String path) {
String [] list;
try {
list = getAssets().list(path);
if (list.length > 0) {
// This is a folder
for (String file : list) {
if (!listAssetFiles(path + "/" + file))
return false;
else {
// This is a file
// TODO: add file name to an array list
}
}
}
} catch (IOException e) {
return false;
}
return true;
}
打电话与您的资产文件夹的根文件夹名称listAssetFiles。
listAssetFiles("root_folder_name_in_assets");
如果根文件夹是资源文件夹,然后把它与
listAssetFiles("");
试试这个它会在你的工作情况
f = getAssets().list("");
for(String f1 : f){
Log.v("names",f1);
}
上面的片段将显示资产根的内容。
例如...如果下面是资产结构..
assets
|__Dir1
|__Dir2
|__File1
摘录的输出将是....方向1方向2文件1
如果您需要dir1目录中的内容
在列表功能通过目录的名称。
f = getAssets().list("Dir1");
希望这有助于:
下面的代码将复制所有文件夹和它的内容和到SD卡位置的子文件夹的内容:
private void getAssetAppFolder(String dir) throws Exception{
{
File f = new File(sdcardLocation + "/" + dir);
if (!f.exists() || !f.isDirectory())
f.mkdirs();
}
AssetManager am=getAssets();
String [] aplist=am.list(dir);
for(String strf:aplist){
try{
InputStream is=am.open(dir+"/"+strf);
copyToDisk(dir,strf,is);
}catch(Exception ex){
getAssetAppFolder(dir+"/"+strf);
}
}
}
public void copyToDisk(String dir,String name,InputStream is) throws IOException{
int size;
byte[] buffer = new byte[2048];
FileOutputStream fout = new FileOutputStream(sdcardLocation +"/"+dir+"/" +name);
BufferedOutputStream bufferOut = new BufferedOutputStream(fout, buffer.length);
while ((size = is.read(buffer, 0, buffer.length)) != -1) {
bufferOut.write(buffer, 0, size);
}
bufferOut.flush();
bufferOut.close();
is.close();
fout.close();
}
这里是一个解决我的问题,我找到了工作100%,列出所有的目录和文件,甚至子目录和文件的子目录。
注:在我的情况
- 文件名了。 在他们中。 即热媒.TXT等
数据夹没有任何。 在他们中。
listAssetFiles2(path); // <<-- Call function where required //function to list files and directories public void listAssetFiles2 (String path){ String [] list; try { list = getAssets().list(path); if(list.length > 0){ for(String file : list){ System.out.println("File path = "+file); if(file.indexOf(".") < 0) { // <<-- check if filename has a . then it is a file - hopefully directory names dont have . System.out.println("This is a folder = "+path+"/"+file); listAssetFiles2(file); // <<-- To get subdirectory files and directories list and check }else{ System.out.println("This is a file = "+path+"/"+file); } } }else{ System.out.println("Failed Path = "+path); System.out.println("Check path again."); } }catch(IOException e){ e.printStackTrace(); } }//now completed
谢谢
基于该@Kammaar答案。 这科特林代码扫描了叶子的文件树:
private fun listAssetFiles(path: String, context: Context): List<String> {
val result = ArrayList<String>()
context.assets.list(path).forEach { file ->
val innerFiles = listAssetFiles("$path/$file", context)
if (!innerFiles.isEmpty()) {
result.addAll(innerFiles)
} else {
// it can be an empty folder or file you don't like, you can check it here
result.add("$path/$file")
}
}
return result
}