首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

JAVA批改文件名字

2012-12-27 
JAVA修改文件名字File oldFile new File(d:/dd.txt)?? if(!oldFile.exists()){??? oldFile.createNew

JAVA修改文件名字

File oldFile = new File("d:/dd.txt");
?? 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("修改失败");
?? }

热点排行