public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new FileReader("output1.txt"));
List<String> newName = new ArrayList<String>();
List<String> oldName = new ArrayList<String>();
文字列行;
文字列[]列;
while((line=br.readLine())!=null) {
Col = line.split("#");
newName.add(col[0]);
oldName.add(col[1]);
}
br.close();
for(int i=0;i<newName.size();i++) {
File oldFile = new File("D://TDDOWNLOAD//heihei//"+oldName.get(i)+".mp4");
System.out.println(oldFile.exists());//ファイルが存在するかどうかを確認します
ファイル newFile = 新しい File(oldFile.getParent()+File.separator+newName.get(i)+".mp4");
if(newFile.exists()) {
System.out.println(i+"alreadyowned"); //新しいファイルはすでに存在します。
} それ以外 {
System.out.println(i+"/t"+oldFile.renameTo(newFile));//古いファイルの名前が正常に変更されたかどうか
}
}
}
}