题目描述如下:
定义一个工具类,该类要求用户运行该程序时输入一个路径。该工具会将该路径下(及其子目录下的)所有文件列出来。
代码如下:(第一次用Java写一个像样的程序,有点小激动......)
-
import java.io.*;
-
import java.util.Scanner;
-
public class Hello {
-
//private static String pa
-
public static void recv(String path)
-
{
-
File newFile = new File(path);
-
if (newFile.exists())
-
{
-
File[] fileList = newFile.listFiles();
-
if (fileList.length == 0)
-
{
-
System.out.println("文件夹是空的");
-
}
-
-
for (File file:fileList)
-
{
-
if (file.isFile())
-
{
-
System.out.println("文件名"+file.getAbsolutePath());
-
}
-
else{
-
System.out.println("路径名"+file.getAbsolutePath());
-
recv(file.getAbsolutePath());
-
}
-
}
-
}
-
else
-
System.out.println("文件不存在");
-
}
-
public static void main(String[] args)throws Exception
-
{
-
Scanner sc = new Scanner(System.in);
-
//File newFile = new File("c:");
-
//File newFile = new File(path);
-
while (sc.hasNext())
-
{
-
-
recv(sc.next());
-
-
}
-
-
}
-
-
-
}
运行结果如下:
F:\冰点文库
文件名F:\冰点文库\11-论文综述.docx
文件名F:\冰点文库\11文献阅读成绩报告单.doc
文件名F:\冰点文库\11研究生开题申请表.doc
文件名F:\冰点文库\Google.ProtocolBuffers.dll
路径名F:\冰点文库\images
文件夹是空的
文件名F:\冰点文库\Update.exe
文件名F:\冰点文库\Update.exe.CodeAnalysisLog.xml
文件名F:\冰点文库\Update.exe.lastcodeanalysissucceeded
文件名F:\冰点文库\Update.pdb
文件名F:\冰点文库\UrlManager_Win32.exe
文件名F:\冰点文库\UrlManager_Win32.pdb
文件名F:\冰点文库\UrlManager_Win32.vshost.exe
文件名F:\冰点文库\UrlManager_Win32.vshost.exe.manifest
文件名F:\冰点文库\开题报告Final.doc
文件名F:\冰点文库\开题报告评审表.doc
文件名F:\冰点文库\论文工作计划.doc
’
阅读(1764) | 评论(0) | 转发(0) |