Javaでファイル名を修正するサンプルコード

Javaコード:
package script;

import java.io.File;
import java.io.IOException;

public class Realname {

public static void main(String[] args) throws IOException
{

File oldFile = new File(“E:/mxm_server/startnews24");
if(!oldFile.exists())
{
oldFile.createNewFile();
}
System.out.println(“修正前ファイル:"+oldFile.getName());
String rootPath = oldFile.getParent();
System.out.println(“ルートパス:"+rootPath);
File newFile = new File(rootPath + File.separator + “PMSTmp");
System.out.println(“修正後ファイル:"+newFile.getName());
if (oldFile.renameTo(newFile))
{
System.out.println(“修正成功!");
}
else
{
System.out.println(“修正失敗");
}
}
}

Java

Posted by arkgame