Android读取SD卡下面所有的TXT文件名 listView显示出来
  YSzrYKYMzpiK 2023年11月02日 266 0


 

 

MainActivity.java

package com.zxl;

import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;

import android.app.Activity;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.widget.ListView;
import android.widget.SimpleAdapter;

public class Txt_sdkaActivity extends Activity {
	private ListView lv;
	ArrayList name;

	/** Called when the activity is first created. */
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		lv = (ListView) findViewById(R.id.lv);
		name = new ArrayList();
		if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
			File path = Environment.getExternalStorageDirectory();// 获得SD卡路径
			// File path = new File("/mnt/sdcard/");
			File[] files = path.listFiles();// 读取
			getFileName(files);
		}
		SimpleAdapter adapter = new SimpleAdapter(this, name, R.layout.pes, new String[] { "Name" }, new int[] { R.id.txt_tv });
		lv.setAdapter(adapter);
		for (int i = 0; i < name.size(); i++) {
			Log.i("zeng", "list.  name:  " + name.get(i));
		}
	}

	private void getFileName(File[] files) {
		if (files != null) {// 先判断目录是否为空,否则会报空指针
			for (File file : files) {
				if (file.isDirectory()) {
					Log.i("zeng", "若是文件目录。继续读1" + file.getName().toString() + file.getPath().toString());

					getFileName(file.listFiles());
					Log.i("zeng", "若是文件目录。继续读2" + file.getName().toString() + file.getPath().toString());
				} else {
					String fileName = file.getName();
					if (fileName.endsWith(".txt")) {
						HashMap map = new HashMap();
						String s = fileName.substring(0, fileName.lastIndexOf(".")).toString();
						Log.i("zeng", "文件名txt::   " + s);
						map.put("Name", fileName .substring(0, fileName.lastIndexOf(".")));
						name.add(map);
					}
				}
			}
		}
	}
}

main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

    <ListView
        android:id="@+id/lv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="62dp" >
    </ListView>

</RelativeLayout>

 

pes.xml

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
  
    
    
    <TextView
        android:id="@+id/txt_tv"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textSize="20pt"
        android:layout_weight="1"
        />

    
    

</LinearLayout>



【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2024年01月11日 0

暂无评论

推荐阅读
  KRe60ogUm4le   2024年04月26日   30   0   0 java算法
  KRe60ogUm4le   2024年05月03日   56   0   0 javascala
YSzrYKYMzpiK
最新推荐 更多

2024-05-31