0

我正在编写一个代码来重命名java中的文件数量。我有一个.txt. 我的程序在其中检索文档名称及其新名称的文件。它目前不起作用..它可以编译并运行,但不会重命名我的文件。

这是我的代码:

public static void rename(String ol, String ne){
  File oldfile =new File(ol);
  File newfile =new File(ne);
  int t=0;
  if( oldfile.isFile() && oldfile.canRead()){
     if (newfile.exists()){
        t++;
        ne = ne.substring(0,ne.lastIndexOf('.')) + " (" + t + ")" + 
           ne.substring(ne.lastIndexOf('.')) ;
        rename(ol,ne);
     }

     if(oldfile.renameTo(newfile))
        System.out.println("Rename succesful");
     else
        System.out.println("Rename failed" + " - " + ol + " " + ne);

  }else 
     System.out.println("CANNOT Rename " + oldfile + " because read/write issues. Check 
                          if  File exists" );
}     

public static void main(String[] args) throws IOException
{   
    ReadFile ren = new ReadFile("List of Founds.txt");
    String r[] = ren.OpenFile();

    for(int j=0; j<ReadFile.numberOfLines; j++){

        String pdfOldName = r[j].substring(0,r[j].lastIndexOf('.'));
        String pdfNewName = r[j].substring((r[j].lastIndexOf('.') + 4));

        rename(pdfOldName, pdfNewName);
    } 
}

这是“发现列表”.txt文件,旧名称在左侧,新名称在右侧。

test.pdf.txt ayo1

test2.pdf.txt ayo2

test3.pdf.txt ayo3

4

2 回答 2

2

您可以使用File.html#renameTo(java.io.File)来完成此操作。

这是我编写的一个快速示例程序。希望这能让你朝着正确的方向前进

public class FileMain {

    static int i = 1;

    public static void main(String[] args) throws Exception {
        File file1 = new File("D:/workspace/dir");  
        renamefiles(file1);
    }

    private static void renamefiles(File file){

            File files[] = file.listFiles();
            for(File tempFile :files){

                if(tempFile.isDirectory()){
                    renamefiles(tempFile);
                }else{
                    System.out.println(tempFile.getName());

                    File renameFile = new File("sample-"+(++i)+".bck");
                    tempFile.renameTo(renameFile);

                }
            }



    }
}
于 2013-03-05T15:05:11.637 回答
0

你需要一个 !

if (newfile.exists())  

if (!newfile.exists())

您还需要遵守约定。和单元测试

于 2013-03-05T14:10:04.423 回答