赞
踩
示例代码:
File f = new File("D:\\test\\test.txt");
boolean flag = f.renameTo( new File("D:\\test\\test\\test02.txt") );
System.out.println( flag );
注意点:
此操作与平台(platform-dependent)相关,可能失败,所以最好接收boolean类型返回值以加以判断,且如果参数中的路径文件已存在,不能覆盖,return false.
支持移动、改名、覆盖文件操作。
示例代码:
Files.move(f.toPath(),
new File("D:\\test\\test\\test.txt").toPath(),
StandardCopyOption.REPLACE_EXISTING);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。