java 如何读取指定文件夹内的所有文件夹及文件,然后在页面上以树的形式显示出来。
展开全部
我给你一个读取指定文件夹下面的所有文件夹,和文件的代码。
至于页面上用树来显示,html的话,这个有点麻烦。
swing的话,你就只需要用DefaultTreeModel.add(new TreeNode("XXX"));
public class GetAllFiles{
private String filePath = "C:/windows"; // 读取C:/windos文件
private File f = null;
public GetAllFiles(){
f = new File(filePath);
}
public List<File> getAllFile(){
File[] fileInF = f.listFiles(); // 得到f文件夹下面的所有文件。
List<File> list = new List<File>();
for(File file : fileInF){
list.add(file);
}
return list;
}
public static void main(String[] args){
new GetAllFiles().getAllFile();
}
}
至于页面上用树来显示,html的话,这个有点麻烦。
swing的话,你就只需要用DefaultTreeModel.add(new TreeNode("XXX"));
public class GetAllFiles{
private String filePath = "C:/windows"; // 读取C:/windos文件
private File f = null;
public GetAllFiles(){
f = new File(filePath);
}
public List<File> getAllFile(){
File[] fileInF = f.listFiles(); // 得到f文件夹下面的所有文件。
List<File> list = new List<File>();
for(File file : fileInF){
list.add(file);
}
return list;
}
public static void main(String[] args){
new GetAllFiles().getAllFile();
}
}
展开全部
我给你一个
把你要显示的文件夹目录放在bat文件里面,所有的文件目录都会保存在txt文件c:\treeList.txt里面,后面你要怎么处理都可以。
c:\\x.bat内容如下:
DEL c:\treeList.txt
cd "C:\workspace\Test"
TREE /F >c:\treeList.txt
public class Dog {
public static void main(String[] args) throws IOException {
listFolderTree();
}
public static void listFolderTree() {
Process process;
try {
process = Runtime.getRuntime().exec("c:\\x.bat");
InputStream fis = process.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
String line = null;
while ((line = br.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
把你要显示的文件夹目录放在bat文件里面,所有的文件目录都会保存在txt文件c:\treeList.txt里面,后面你要怎么处理都可以。
c:\\x.bat内容如下:
DEL c:\treeList.txt
cd "C:\workspace\Test"
TREE /F >c:\treeList.txt
public class Dog {
public static void main(String[] args) throws IOException {
listFolderTree();
}
public static void listFolderTree() {
Process process;
try {
process = Runtime.getRuntime().exec("c:\\x.bat");
InputStream fis = process.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
String line = null;
while ((line = br.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |