黑马程序员技术交流社区

标题: 求分析,有代码就更好了。 [打印本页]

作者: Android666    时间: 2016-2-23 21:23
标题: 求分析,有代码就更好了。
编写一个程序,把指定目录下的所有的带.java文件都拷贝到另一个目录中,拷贝成功后,把后缀名是.java的改成.txt。
作者: davy0119    时间: 2016-2-24 00:37


  1. import java.io.*;


  2. public class Test {
  3.         public static void main(String[] args) throws IOException {
  4.                 File file1=new File ("F:"+File.separator+"src");
  5.                 copyAndRename(file1);
  6.         }

  7.         private static void copyAndRename(File file1) throws IOException {
  8.                 File[] fi=file1.listFiles(new SuffixFilter());
  9.                 String filename="F:"+File.separator+"src2";
  10.                 byte[] buf=new byte[1024];
  11.                 int len;
  12.                 for(File f:fi){
  13.                         String fname=f.getName();
  14.                         BufferedInputStream bis=new BufferedInputStream(new FileInputStream(f));
  15.                         BufferedOutputStream bos=new BufferedOutputStream(new FileOutputStream(filename+File.separator+fname));
  16.                         while((len=bis.read(buf))!=-1){
  17.                                 bos.write(buf,0,len);
  18.                         }
  19.                          bis.close();
  20.                  bos.close();
  21.                File f2=new File(f.getAbsolutePath());
  22.                fname=fname.replace(".java", ".txt");
  23.                File f3=new File("F:"+File.separator+"src"+File.separator+fname);
  24.                f2.renameTo(f3);
  25.                 }
  26.                
  27.         }
  28. }

  29. class SuffixFilter implements FilenameFilter{

  30.         public boolean accept(File dir, String name) {
  31.                
  32.                 return name.endsWith(".java");
  33.         }
  34.        
  35. }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2