JAVA文件读写

来源:互联网 发布:linux取证命令 编辑:程序博客网 时间:2024/06/07 17:35


  1. import
     java.io.InputStreamReader;  
  2. import java.io.RandomAccessFile;  
  3. import java.io.Reader;  
  4. public class ReadFromFile {  
  5. /** 
  6. * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。 
  7. * @param fileName 文件的名 
  8. */  
  9. public static void readFileByBytes(String fileName){  
  10. File file = new File(fileName);  
  11. InputStream in = null;  
  12. try {  
  13. System.out.println("以字节为单位读取文件内容,一次读一个字节:");  
  14. // 一次读一个字节  
  15. in = new FileInputStream(file);  
  16. int tempbyte;  
  17. while((tempbyte=in.read()) != -1){  
  18. System.out.write(tempbyte);  
  19. }  
  20. in.close();  
  21. catch (IOException e) {  
  22. e.printStackTrace();  
  23. return;  
  24. }  
  25. try {  
  26. System.out.println("以字节为单位读取文件内容,一次读多个字节:");  
  27. //一次读多个字节  
  28. byte[] tempbytes = new byte[100];  
  29. int byteread = 0;  
  30. in = new FileInputStream(fileName);  
  31. ReadFromFile.showAvailableBytes(in);  
  32. //读入多个字节到字节数组中,byteread为一次读入的字节数  
  33. while ((byteread = in.read(tempbytes)) != -1){  
  34. System.out.write(tempbytes, 0, byteread);  
  35. }  
  36. catch (Exception e1) {  
  37. e1.printStackTrace();  
  38. finally {  
  39. if (in != null){  
  40. try {  
  41. in.close();  
  42. catch (IOException e1) {  
  43. }  
  44. }  
  45. }  
  46. }  
  47. /** 
  48. * 以字符为单位读取文件,常用于读文本,数字等类型的文件 
  49. * @param fileName 文件名 
  50. */  
  51. public static void readFileByChars(String fileName){  
  52. File file = new File(fileName);  
  53. Reader reader = null;  
  54. try {  
  55. System.out.println("以字符为单位读取文件内容,一次读一个字节:");  
  56. // 一次读一个字符  
  57. reader = new InputStreamReader(new FileInputStream(file));  
  58. int tempchar;  
  59. while ((tempchar = reader.read()) != -1){  
  60. //对于windows下,rn这两个字符在一起时,表示一个换行。  
  61. //但如果这两个字符分开显示时,会换两次行。  
  62. //因此,屏蔽掉r,或者屏蔽n。否则,将会多出很多空行。  
  63. if (((char)tempchar) != 'r'){  
  64. System.out.print((char)tempchar);  
  65. }  
  66. }  
  67. reader.close();  
  68. catch (Exception e) {  
  69. e.printStackTrace();  
  70. }  
  71. try {  
  72. System.out.println("以字符为单位读取文件内容,一次读多个字节:");  
  73. //一次读多个字符  
  74. char[] tempchars = new char[30];  
  75. int charread = 0;  
  76. reader = new InputStreamReader(new FileInputStream(fileName));  
  77. //读入多个字符到字符数组中,charread为一次读取字符数  
  78. while ((charread = reader.read(tempchars))!=-1){  
  79. //同样屏蔽掉r不显示  
  80. if ((charread == tempchars.length)&&(tempchars[tempchars.length-1] != 'r')){  
  81. System.out.print(tempchars);  
  82. }else{  
  83. for (int i=0; i<charread; i++){  
  84. if(tempchars[i] == 'r'){  
  85. continue;  
  86. }else{  
  87. System.out.print(tempchars[i]);  
  88. }  
  89. }  
  90. }  
  91. }  
  92. catch (Exception e1) {  
  93. e1.printStackTrace();  
  94. }finally {  
  95. if (reader != null){  
  96. try {  
  97. reader.close();  
  98. catch (IOException e1) {  
  99. }  
  100. }  
  101. }  
  102. }  
  103. /** 
  104. * 以行为单位读取文件,常用于读面向行的格式化文件 
  105. * @param fileName 文件名 
  106. */  
  107. public static void readFileByLines(String fileName){  
  108. File file = new File(fileName);  
  109. BufferedReader reader = null;  
  110. try {  
  111. System.out.println("以行为单位读取文件内容,一次读一整行:");  
  112. reader = new BufferedReader(new FileReader(file));  
  113. String tempString = null;  
  114. int line = 1;  
  115. //一次读入一行,直到读入null为文件结束  
  116. while ((tempString = reader.readLine()) != null){  
  117. //显示行号  
  118. System.out.println("line " + line + ": " + tempString);  
  119. line++;  
  120. }  
  121. reader.close();  
  122. catch (IOException e) {  
  123. e.printStackTrace();  
  124. finally {  
  125. if (reader != null){  
  126. try {  
  127. reader.close();  
  128. catch (IOException e1) {  
  129. }  
  130. }  
  131. }  
  132. }  
  133. /** 
  134. * 随机读取文件内容 
  135. * @param fileName 文件名 
  136. */  
  137. public static void readFileByRandomAccess(String fileName){  
  138. RandomAccessFile randomFile = null;  
  139. try {  
  140. System.out.println("随机读取一段文件内容:");  
  141. // 打开一个随机访问文件流,按只读方式  
  142. randomFile = new RandomAccessFile(fileName, "r");  
  143. // 文件长度,字节数  
  144. long fileLength = randomFile.length();  
  145. // 读文件的起始位置  
  146. int beginIndex = (fileLength > 4) ? 4 : 0;  
  147. //将读文件的开始位置移到beginIndex位置。  
  148. randomFile.seek(beginIndex);  
  149. byte[] bytes = new byte[10];  
  150. int byteread = 0;  
  151. //一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。  
  152. //将一次读取的字节数赋给byteread  
  153. while ((byteread = randomFile.read(bytes)) != -1){  
  154. System.out.write(bytes, 0, byteread);  
  155. }  
  156. catch (IOException e){  
  157. e.printStackTrace();  
  158. finally {  
  159. if (randomFile != null){  
  160. try {  
  161. randomFile.close();  
  162. catch (IOException e1) {  
  163. }  
  164. }  
  165. }  
  166. }  
  167. /** 
  168. * 显示输入流中还剩的字节数 
  169. * @param in 
  170. */  
  171. private static void showAvailableBytes(InputStream in){  
  172. try {  
  173. System.out.println("当前字节输入流中的字节数为:" + in.available());  
  174. catch (IOException e) {  
  175. e.printStackTrace();  
  176. }  
  177. }  
  178. public static void main(String[] args) {  
  179. String fileName = "C:/temp/newTemp.txt";  
  180. ReadFromFile.readFileByBytes(fileName);  
  181. ReadFromFile.readFileByChars(fileName);  
  182. ReadFromFile.readFileByLines(fileName);  
  183. ReadFromFile.readFileByRandomAccess(fileName);  
  184. }  
  185. }  
  186. 二、将内容追加到文件尾部  
  187. import java.io.FileWriter;  
  188. import java.io.IOException;  
  189. import java.io.RandomAccessFile;  
  190. /** 
  191. * 将内容追加到文件尾部 
  192. */  
  193. public class AppendToFile {  
  194. /** 
  195. * A方法追加文件:使用RandomAccessFile 
  196. * @param fileName 文件名 
  197. * @param content 追加的内容 
  198. */  
  199. public static void appendMethodA(String fileName,  
  200.   
  201. String content){  
  202. try {  
  203. // 打开一个随机访问文件流,按读写方式  
  204. RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");  
  205. // 文件长度,字节数  
  206. long fileLength = randomFile.length();  
  207. //将写文件指针移到文件尾。  
  208. randomFile.seek(fileLength);  
  209. randomFile.writeBytes(content);  
  210. randomFile.close();  
  211. catch (IOException e){  
  212. e.printStackTrace();  
  213. }  
  214. }  
  215. /** 
  216. * B方法追加文件:使用FileWriter 
  217. * @param fileName 
  218. * @param content 
  219. */  
  220. public static void appendMethodB(String fileName, String content){  
  221. try {  
  222. //打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件  
  223. FileWriter writer = new FileWriter(fileName, true);  
  224. writer.write(content);  
  225. writer.close();  
  226. catch (IOException e) {  
  227. e.printStackTrace();  
  228. }  
  229. }  
  230. public static void main(String[] args) {  
  231. String fileName = "C:/temp/newTemp.txt";  
  232. String content = "new append!";  
  233. //按方法A追加文件  
  234. AppendToFile.appendMethodA(fileName, content);  
  235. AppendToFile.appendMethodA(fileName, "append end. n");  
  236. //显示文件内容  
  237. ReadFromFile.readFileByLines(fileName);  
  238. //按方法B追加文件  
  239. AppendToFile.appendMethodB(fileName, content);  
  240. AppendToFile.appendMethodB(fileName, "append end. n");  
  241. //显示文件内容  
  242. ReadFromFile.readFileByLines(fileName);  
  243. }  
  244. }  



一.获得控制台用户输入的信息

     public String getInputMessage() throws IOException...{
         System.out.println("请输入您的命令∶");
         byte buffer[]=new byte[1024];
         int count=System.in.read(buffer);
         char[] ch=new char[count-2];//最后两位为结束符,删去不要
         for(int i=0;i<count-2;i++)
             ch[i]=(char)buffer[i];
         String str=new String(ch);
         return str;
     }
     可以返回用户输入的信息,不足之处在于不支持中文输入,有待进一步改进。

     二.复制文件
     1.以文件流的方式复制文件

     
public void copyFile(String src,String dest) throws IOException...{
         FileInputStream in=new FileInputStream(src);
         File file=new File(dest);
         if(!file.exists())
             file.createNewFile();
         FileOutputStream out=new FileOutputStream(file);
         int c;
         byte buffer[]=new byte[1024];
         while((c=in.read(buffer))!=-1)...{
             for(int i=0;i<c;i++)
                 out.write(buffer[i]);        
         }
         in.close();
         out.close();
     }
     该方法经过测试,支持中文处理,并且可以复制多种类型,比如txt,xml,jpg,doc等多种格式

     三.写文件

     1.利用PrintStream写文件


   
  public void PrintStreamDemo()...{
         try ...{
             FileOutputStream out=new FileOutputStream("D:/test.txt");
             PrintStream p=new PrintStream(out);
             for(int i=0;i<10;i++)
                 p.println("This is "+i+" line");
         } catch (FileNotFoundException e) ...{
             e.printStackTrace();
         }
     }
     2.利用StringBuffer写文件
public void StringBufferDemo() throws IOException......{
         File file=new File("/root/sms.log");
         if(!file.exists())
             file.createNewFile();
         FileOutputStream out=new FileOutputStream(file,true);        
         for(int i=0;i<10000;i++)......{
             StringBuffer sb=new StringBuffer();
             sb.append("这是第"+i+"行:前面介绍的各种方法都不关用,为什么总是奇怪的问题 ");
             out.write(sb.toString().getBytes("utf-8"));
         }        
         out.close();
     }
     该方法可以设定使用何种编码,有效解决中文问题。
四.文件重命名
    
     public void renameFile(String path,String oldname,String newname)...{
         if(!oldname.equals(newname))...{//新的文件名和以前文件名不同时,才有必要进行重命名
             File oldfile=new File(path+"/"+oldname);
             File newfile=new File(path+"/"+newname);
             if(newfile.exists())//若在该目录下已经有一个文件和新文件名相同,则不允许重命名
                 System.out.println(newname+"已经存在!");
             else...{
                 oldfile.renameTo(newfile);
             }
         }         
     }

  五.转移文件目录
     转移文件目录不等同于复制文件,复制文件是复制后两个目录都存在该文件,而转移文件目录则是转移后,只有新目录中存在该文件。
    
    
 public void changeDirectory(String filename,String oldpath,String newpath,boolean cover)...{
         if(!oldpath.equals(newpath))...{
             File oldfile=new File(oldpath+"/"+filename);
             File newfile=new File(newpath+"/"+filename);
             if(newfile.exists())...{//若在待转移目录下,已经存在待转移文件
                 if(cover)//覆盖
                     oldfile.renameTo(newfile);
                 else
                     System.out.println("在新目录下已经存在:"+filename);
             }
             else...{
                 oldfile.renameTo(newfile);
             }
         }       
     }
     六.读文件
     1.利用FileInputStream读取文件

    
   
  public String FileInputStreamDemo(String path) throws IOException...{
         File file=new File(path);
         if(!file.exists()||file.isDirectory())
             throw new FileNotFoundException();
         FileInputStream fis=new FileInputStream(file);
         byte[] buf = new byte[1024];
         StringBuffer sb=new StringBuffer();
         while((fis.read(buf))!=-1)...{
             sb.append(new String(buf));    
             buf=new byte[1024];//重新生成,避免和上次读取的数据重复
         }
         return sb.toString();
     }
2.利用BufferedReader读取

     在IO操作,利用BufferedReader和BufferedWriter效率会更高一点


    
     public String BufferedReaderDemo(String path) throws IOException...{
         File file=new File(path);
         if(!file.exists()||file.isDirectory())
             throw new FileNotFoundException();
         BufferedReader br=new BufferedReader(new FileReader(file));
         String temp=null;
         StringBuffer sb=new StringBuffer();
         temp=br.readLine();
         while(temp!=null)...{
             sb.append(temp+" ");
             temp=br.readLine();
         }
         return sb.toString();
     }


     3.利用dom4j读取xml文件

    
     public Document readXml(String path) throws DocumentException, IOException...{
         File file=new File(path);
         BufferedReader bufferedreader = new BufferedReader(new FileReader(file));
         SAXReader saxreader = new SAXReader();
         Document document = (Document)saxreader.read(bufferedreader);
         bufferedreader.close();
         return document;
     }
     七.创建文件(文件夹)


1.创建文件夹  
     public void createDir(String path)...{
         File dir=new File(path);
         if(!dir.exists())
             dir.mkdir();
     }
2.创建新文件
     public void createFile(String path,String filename) throws IOException...{
         File file=new File(path+"/"+filename);
         if(!file.exists())
             file.createNewFile();
     }
     八.删除文件(目录)
1.删除文件     
     public void delFile(String path,String filename)...{
         File file=new File(path+"/"+filename);
         if(file.exists()&&file.isFile())
             file.delete();
     }
2.删除目录
要利用File类的delete()方法删除目录时,必须保证该目录下没有文件或者子目录,否则删除失败,因此在实际应用中,我们要删除目录,必须利用递归删除该目录下的所有子目录和文件,然后再删除该目录。  
     public void delDir(String path)...{
         File dir=new File(path);
         if(dir.exists())...{
             File[] tmp=dir.listFiles();
             for(int i=0;i<tmp.length;i++)...{
                 if(tmp[i].isDirectory())...{
                     delDir(path+"/"+tmp[i].getName());
                 }
                 else...{
                     tmp[i].delete();
                 }
             }
             dir.delete();
         }
     }