java修改文件后缀名
把D:/java/as.jar复制到c盘下,并且把后缀名改为.jad。如何用java代码实现?...
把D:/java/as.jar复制到c盘下,并且把后缀名改为.jad。
如何用java代码实现? 展开
如何用java代码实现? 展开
推荐于2017-09-04 · 知道合伙人数码行家
关注
展开全部
以下程序实现的功能是批量修改文件后缀:
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");
}
}
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");
}
}
展开全部
是用文件流的操作来实现文件复制吗?
new一个file 然后把file里面的流读出来然后写到另一个file中就可以了
new一个file 然后把file里面的流读出来然后写到另一个file中就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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();
}
}
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();
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询