电脑桌面
添加小米粒文库到电脑桌面
安装后可以在桌面快捷访问

Java批量修改文件名

Java批量修改文件名_第1页
1/6
Java批量修改文件名_第2页
2/6
Java批量修改文件名_第3页
3/6
在java中实现了批量修改文件名 一共需要如下三个类: 1、FileOperation实现批量修改文件名 2、Pair保存文件修改后的信息 3、FileException异常类 源代码如下: FileException.java /** * @author yunfeiyang * */ public class FileException extends Exception { private static final long serialVersionUID = -6732271928769108516L; private String message; public FileException() { // TODO Auto-generated constructor stub } /** * @param message */ public FileException(String message) { super(message); this.message = message; } /** * @param cause */ public FileException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } /** * @param message * @param cause */ public FileException(String message, Throwable cause) { super(message, cause); } public String getErrorMessage() { return message; } } FileOperation.java package com.zjut.yunfeiyang; import java.io.File; import java.util.ArrayList; public class FileOperation { public FileOperation() { } public Pair renameFile(File source, String name) throws NullPointerException, FileException { if (source == null) { throw new NullPointerException("source file is null"); } else if (name == null || name.trim().length() == 0) { throw new NullPointerException("file name is null"); } else if (!source.exists()) { throw new FileException("File does not exsist"); } else if (source.isDirectory()) { throw new FileException("It is a directory not a file"); } else { String filename = source.getName(); String fname = filename.substring(0, filename.lastIndexOf(".")); if (fname.equalsIgnoreCase(name)) { throw new FileException( "file name can't be the same with source file for filename:" + name); } else { String extensin = filename .substring(filename.lastIndexOf(".") + 1); String newName = name + "." + extensin; String pat...

1、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
3、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。

碎片内容

Java批量修改文件名

确认删除?
VIP
微信客服
  • 扫码咨询
会员Q群
  • 会员专属群点击这里加入QQ群
客服邮箱
回到顶部