❶ 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就是文件大小。