❶ Java 编写一个程序 实现输出一个给定目录中的全部文件的路径
读取文件夹下所有文件及文件夹用.list()就可以,返回文件名包括后缀名。
至于文件大小你试试这个:
public void File(String oldPath, String newPath) { //复制文件
//System.out.println(oldPath+"***"+newPath);
try {
//int bytesum = 0;
int byteread = 0;
InputStream inStream = new FileInputStream(oldPath); // 读入原文件
FileOutputStream fs = new FileOutputStream(newPath);
byte[] buffer = new byte[1024]; //每次取用的大小
while ((byteread = inStream.read(buffer)) != -1) {
//bytesum += byteread; // 字节数 文件大小
//System.out.println(bytesum);
fs.write(buffer, 0, byteread);
}
inStream.close();
}catch (Exception e) {
System.out.println(" file error");
e.printStackTrace();
}
}
把注释去了,里面的bytesum就是文件大小。