java修改文件后缀名
发布网友
发布时间:2022-04-22 11:25
我来回答
共5个回答
热心网友
时间:2022-05-15 14:19
展开1全部以下程序实现的功能是批量修改文件后缀:
import java.io.*;
/**
* JAVA实现的批量更改文件后缀名的程序。
*
* @author rommnn
*/
public class ExtBatchRename {
/**
* 修改程序。<br>
* 内部递归调用,进行子目录的更名
*
* @param path
* 路径
* @param from
* 原始的后缀名,包括那个(.点)
* @param to
* 改名的后缀,也包括那个(.点)
*/
public void reName(String path, String from, String to) {
File f = new File(path);
File[] fs = f.listFiles();
for (int i = 0; i < fs.length; ++i) {
File f2 = fs[i];
if (f2.isDirectory()) {
reName(f2.getPath(), from, to);
} else {
String name = f2.getName();
if (name.endsWith(from)) {
f2.renameTo(new File(f2.getParent() + "/" + name.substring(0, name.indexOf(from)) + to));
}
}
}
}
public static void main(String[] args) {
ExtBatchRename rf = new ExtBatchRename();
rf.reName("d:/www.laozizhu.com", ".jsp", ".html");
}
}
热心网友
时间:2022-05-15 15:37
是用文件流的操作来实现文件复制吗?
new一个file 然后把file里面的流读出来然后写到另一个file中就可以了
热心网友
时间:2022-05-15 17:12
public class CopyFileTest {
public static void main(String[] args) throws IOException {
File fileIn = new File("D:\\java\\as.jar");
File fileOut = new File("c:\\as.jad");
FileInputStream fis = new FileInputStream(fileIn);
FileOutputStream fos = new FileOutputStream(fileOut);
BufferedInputStream bis = new BufferedInputStream(fis);
BufferedOutputStream bos = new BufferedOutputStream(fos);
byte[] b = new byte[(int) fileIn.length()];
int len = 0;
if((len = bis.read(b)) != -1) {
bos.write(b, 0, len);
}
fis.close();
fos.close();
}
}
热心网友
时间:2022-05-15 19:03
什么意思
热心网友
时间:2022-05-15 21:11
自问自答?