Java 读写文件示例
Posted 深南大道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 读写文件示例相关的知识,希望对你有一定的参考价值。
import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; public class Test4 { public static void main(String[] args) { FileUtil f = new FileUtil(); System.out.println(f.read("c:/a.txt")); final String fileName = "c:/a.txt"; System.out.println(f.delete(fileName)); System.out.println(f.write(fileName, "这是java写入的内容1")); System.out.println(f.append(fileName, "这是java写入的内容2")); System.out.println(f.write(fileName, "这是java写入的内容3")); } } /** * 文件读写类 */ class FileUtil { /* * 删除文件 */ public boolean delete(String fileName) { boolean result = false; File f = new File(fileName); if (f.exists()) { try { result = f.delete(); } catch (Exception e) { e.printStackTrace(); } } else { result = true; } return result; } /* * 读取文件 */ public String read(String fileName) { File f = new File(fileName); if (!f.exists()) { return "File not found!"; } FileInputStream fs; String result = null; try { fs = new FileInputStream(f); byte[] b = new byte[fs.available()]; fs.read(b); fs.close(); result = new String(b); } catch (Exception e) { e.printStackTrace(); } return result; } /* *写文件 */ public boolean write(String fileName, String fileContent) { boolean result = false; File f = new File(fileName); try { FileOutputStream fs = new FileOutputStream(f); byte[] b = fileContent.getBytes(); fs.write(b); fs.flush(); fs.close(); result = true; } catch (Exception e) { e.printStackTrace(); } return result; } /* * 追加内容到文件 */ public boolean append(String fileName, String fileContent) { boolean result = false; File f = new File(fileName); try { if (f.exists()) { FileInputStream fsIn = new FileInputStream(f); byte[] bIn = new byte[fsIn.available()]; fsIn.read(bIn); String oldFileContent = new String(bIn); //System.out.println("旧内容:" + oldFileContent); fsIn.close(); if (!oldFileContent.equalsIgnoreCase("")) { fileContent = oldFileContent + " " + fileContent; //System.out.println("新内容:" + fileContent); } } FileOutputStream fs = new FileOutputStream(f); byte[] b = fileContent.getBytes(); fs.write(b); fs.flush(); fs.close(); result = true; } catch (Exception e) { e.printStackTrace(); } return result; } }
import java.io.*; public class Test4 { /** * 读取文件写入到另外一个文件 * @param args */ public static void main(String[] args) { BufferedReader buffReader = null; BufferedWriter buffWriter = null; try { buffReader = new BufferedReader(new FileReader("C:\a.txt")); buffWriter = new BufferedWriter(new FileWriter("C:\a_bak.txt")); String line = null; while ((line = buffReader.readLine()) != null) { buffWriter.write(line); buffWriter.newLine(); buffWriter.flush(); } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } }
以上是关于Java 读写文件示例的主要内容,如果未能解决你的问题,请参考以下文章
java IO文件读写例子(OutputStream,InputStream,Writer,Reader)
Java-jxl插件Excel文件读写报错jxl.read.biff.BiffException: Unable to recognize OLE stream
Java-jxl插件Excel文件读写报错jxl.read.biff.BiffException: Unable to recognize OLE stream