怎么用Java编写简单的程序,遍历c盘里所有的文件

怎么用Java编写简单的程序,遍历c盘里所有的文件,第1张

这个可以使用递归来实现,具体代码如下:

import javaioFile;

public class Demo {

public static void main(String[] args) {

File file = new File("C:\\");// 指定文件目录

method(file);

}

public static void method(File file) {

File[] fs = filelistFiles();// 得到File数组

if(fs!=null) {// 判断fs是否为null

for(File f : fs) {

if(fisFile()) {// 如果是文件直接输出

Systemoutprintln(fgetName());

} else {

method(f);// 否则递归调用

}

}

}

}

}

//这是一个计算指定目录所包含文件的总大小的函数

//当然涉及了遍历文件及文件夹

void getLength(File file)

{

if(fileisDirectory())

{

File fileArray[]=filelistFiles();

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

getLength(fileArray[i]); //Systemoutprintln(fileArray[i]getPath());

}

}

else if(fileisFile()){

try

{

RandomAccessFile raf=new RandomAccessFile(file,"r");

fileLength=fileLength+raflength();

rafclose();

}catch(IOException ioe){ioeprintStackTrace();}

}

}

我怀疑 ftp 根目录你没有权限

你尝试着 调用 带参的listFiles方法

 FTPFile[] ftpFiles = ftpClientlistFiles(remotePath);

为了避免目录列举消耗时间过长,请指定一个目录来模拟,命令行参数:代表路径的字符串

如果认可代码,请加分50,谢谢

----

import javaxswing;

import javaxswingtree;

import javaawt;

import javaio;

final public class FileTree extends JFrame {

public FileTree(File dir) throws HeadlessException {

super("File Tree");

JTree tree;

add(new JScrollPane(tree =new JTree(buildTreeModel(dir))));

treesetCellRenderer(new FileTreeRenderer());

setSize(400,600);

setVisible(true);

}

private TreeModel buildTreeModel(File dir){

DefaultMutableTreeNode root = new DefaultMutableTreeNode(dir);

walkthrough(dir,root);

return new DefaultTreeModel(root);

}

private static void walkthrough(File f,DefaultMutableTreeNode node){

for (File fle : flistFiles()) {

DefaultMutableTreeNode n = new DefaultMutableTreeNode(fle);

nodeadd(n);

if (fleisDirectory()){

walkthrough(fle, n);

}

}

}

private class FileTreeRenderer extends DefaultTreeCellRenderer {

public Component getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) {

JLabel cmp = (JLabel)supergetTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);

if (value instanceof DefaultMutableTreeNode) {

DefaultMutableTreeNode n = (DefaultMutableTreeNode)value;

Object obj = ngetUserObject();

if (obj instanceof File) {

File f = (File)obj;

cmpsetText(fgetName());

cmpsetForeground(fisDirectory()ColorBLUE:ColorBLACK);

}

}

return cmp;

}

}

public static void main(String[] args) {

new FileTree(new File(args[0]));

}

}

import javaio;

import javautilArrayList;

import javautilIterator;

import javautilList;

/

读取目录及子目录下指定文件名的路径 并放到一个数组里面返回遍历

@author zdz8207

/

public class FileViewer {

public static void main(String[] args) {

//List arrayList = FileViewergetListFiles("d:/com","html",true);

//读取d:/com下的以java 结尾的文件 如有子目录,包含之(后缀名为null则为所有文件)

//List arrayList = FileViewergetListFiles("d:/com","java",true);

//经试验,后缀不能不填写,否则编译不通过,提示“FileViewerjava:17: 非法的表达式开始”。

//另外后缀为""时的情况需要 增加到IF 里去,否则 后缀为""时,不会显示所有文件

List arrayList = FileViewergetListFiles("d:/com","",true);

if(arrayListisEmpty())

{

Systemoutprintln("没有符号要求的文件");

}

else

{

String message = "";

message += "符号要求的文件数:" + arrayListsize() + "\r\n";

Systemoutprintln(message);

for (Iterator i = arrayListiterator(); ihasNext();)

{

String temp = (String) inext();

Systemoutprintln(temp);

message += temp + "\r\n";

}

//将显示的文件路径写到指定的文件里,若文件不存在,则提示IO异常

//javaioFileNotFoundException: d:\ajax\menutxt (系统找不到指定的路径。)

//如果 加个文件是否存在的判断,如不存在就在当前目录新建一个,则更好。

appendMethod("d:/menutxt",message);

}

}

public static List<String> fileList = new ArrayList<String>();

/

@param path 文件路径

@param suffix 后缀名

@param isdepth 是否遍历子目录

@return

/

public static List getListFiles(String path, String suffix, boolean isdepth)

{

File file = new File(path);

return FileViewerlistFile(file ,suffix, isdepth);

}

public static List listFile(File f, String suffix, boolean isdepth)

{

//是目录,同时需要遍历子目录

if (fisDirectory() && isdepth == true)

{

File[] t = flistFiles();

for (int i = 0; i < tlength; i++)

{

listFile(t[i], suffix, isdepth);

}

}

else

{

String filePath = fgetAbsolutePath();

Systemoutprintln("suffix = "+suffix);

if(suffix =="" || suffix == null)

{

//后缀名为null则为所有文件

Systemoutprintln("----------------");

fileListadd(filePath);

}

else

{

int begIndex = filePathlastIndexOf("");//最后一个(即后缀名前面的)的索引

String tempsuffix = "";

if(begIndex != -1)//防止是文件但却没有后缀名结束的文件

{

tempsuffix = filePathsubstring(begIndex + 1, filePathlength());

}

if(tempsuffixequals(suffix))

{

fileListadd(filePath);

}

Systemoutprintln("|||||||||||||||||||");

}

}

return fileList;

}

/

方法追加文件:使用FileWriter

@param fileName

@param content

/

public static void appendMethod(String fileName, String content)

{

try

{

//打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件

FileWriter writer = new FileWriter(fileName, true);

writerwrite(content + "\r\n");

writerclose();

}

catch (IOException e)

{

eprintStackTrace();

}

}

}

9月

原因:

你访问的是本地文件系统而非hdfs , 因为Configuration默认的是在core-defaultxml中的属性fsdefaultname默认值是file:///,表示本地文件系统。在我们new Configuration();时会默认加载core-defaultxml文件,所以根据这个文件的fsdefaultname值使用了本地文件系统。

解决方法:

一般安装hadoop时都是修改core-sitexml文件,这个文件设置的属性值一般使用来覆盖core-defaultxml这个文件的,在core-sitexml文件中会设置fsdefaultname值为hadoop的namenode的地址以及端口号,如hdfs://localhost:9000,即表示namenode是本机,也就是为分布式。所以我们在连接hdfs时需要指定连接的地址,也就是hadoop集群中core-sitexml中fsdefaultname属性值。所以解决方法有三种:

1)在代码Configuration conf=new Configuration();之后手动为Configuration对象设置fsdefaultname属性值,如:confset("fsdefaultname","hdfs:localhost:9000");

2)在代码的classpath下创建一个文件,在文件中设置fsdefaultname属性值,再使用confaddResource("文件路径")将该文件添加到Configuration中;

3)直接将集群的core-sitexml添加到classpath下即可,无需手动添加到Configuration,在new Configuration时会自动加载该文件

DABAN RP主题是一个优秀的主题,极致后台体验,无插件,集成会员系统
网站模板库 » 怎么用Java编写简单的程序,遍历c盘里所有的文件

0条评论

发表评论

提供最优质的资源集合

立即查看 了解详情