android 程序所在目录下,android获取指定路径下目录文件

http://blog.csdn.net/wxqian25/article/details/7101695

package com.Aina.Android;

import java.io.File;

import java.util.ArrayList;

import java.util.List;

import android.app.AlertDialog;

import android.app.ListActivity;

import android.content.DialogInterface;

import android.os.Bundle;

import android.view.View;

import android.widget.ArrayAdapter;

import android.widget.ListView;

import android.widget.TextView;

public class Test_ListFile extends ListActivity {

/** Called when the activity is first created. */

private List items = null;//存放名称

private List paths = null;//存放路径

private String rootPath = "/";

private TextView tv;

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

tv = (TextView) this.findViewById(R.id.TextView);

this.getFileDir(rootPath);//获取rootPath目录下的文件.

}

public void getFileDir(String filePath) {

try{

this.tv.setText("当前路径:"+filePath);// 设置当前所在路径

items = new ArrayList();

paths = new ArrayList();

File f = new File(filePath);

File[] files = f.listFiles();// 列出所有文件

// 如果不是根目录,则列出返回根目录和上一目录选项

if (!filePath.equals(rootPath)) {

items.add("返回根目录");

paths.add(rootPath);

items.add("返回上一层目录");

paths.add(f.getParent());

}

// 将所有文件存入list中

if(files != null){

int count = files.length;// 文件个数

for (int i = 0; i < count; i++) {

File file = files[i];

items.add(file.getName());

paths.add(file.getPath());

}

}

ArrayAdapter adapter = new ArrayAdapter(this,

android.R.layout.simple_list_item_1, items);

this.setListAdapter(adapter);

}catch(Exception ex){

ex.printStackTrace();

}

}

@Override

protected void onListItemClick(ListView l, View v, int position, long id) {

super.onListItemClick(l, v, position, id);

String path = paths.get(position);

File file = new File(path);

//如果是文件夹就继续分解

if(file.isDirectory()){

this.getFileDir(path);

}else{

new AlertDialog.Builder(this).setTitle("提示").setMessage(file.getName()+" 是一个文件!").setPositiveButton("OK", new DialogInterface.OnClickListener(){

public void onClick(DialogInterface dialog, int which) {

}

}).show();

}

}

}

android:orientation="vertical" android:layout_width="fill_parent"

android:layout_height="fill_parent">

android:id="@+id/TextView"

android:background="#ffff00"

android:layout_height="wrap_content" android:text="@string/hello" />

android:layout_width="fill_parent"

android:layout_height="wrap_content">

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值