4、随机读取文件内容
public class ReadFromFile { /** * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。 */ public static void readFileByBytes(String fileName) { File file = new File(fileName); InputStream in = null ; try { System.out.println( " 以字节为单位读取文件内容,一次读一个字节: " ); // 一次读一个字节 in = new FileInputStream(file); int tempbyte; while ((tempbyte = in.read()) != - 1 ) { System.out.write(tempbyte); } in.close(); } catch (IOException e) { e.printStackTrace(); return ; } try { System.out.println( " 以字节为单位读取文件内容,一次读多个字节: " ); // 一次读多个字节 byte [] tempbytes = new byte [ 100 ]; int byteread = 0 ; in = new FileInputStream(fileName); ReadFromFile.showAvailableBytes(in); // 读入多个字节到字节数组中,byteread为一次读入的字节数 while ((byteread = in.read(tempbytes)) != - 1 ) { System.out.write(tempbytes, 0 , byteread); } } catch (Exception e1) { e1.printStackTrace(); } finally { if (in != null ) { try { in.close(); } catch (IOException e1) { } } } } /** * 以字符为单位读取文件,常用于读文本,数字等类型的文件 */ public static void readFileByChars(String fileName) { File file = new File(fileName); Reader reader = null ; try { System.out.println( " 以字符为单位读取文件内容,一次读一个字节: " ); // 一次读一个字符 reader = new InputStreamReader( new FileInputStream(file)); int tempchar; while ((tempchar = reader.read()) != - 1 ) { // 对于windows下,\r\n这两个字符在一起时,表示一个换行。 // 但如果这两个字符分开显示时,会换两次行。 // 因此,屏蔽掉\r,或者屏蔽\n。否则,将会多出很多空行。 if ((( char ) tempchar) != ' \r ' ) { System.out.print(( char ) tempchar); } } reader.close(); } catch (Exception e) { e.printStackTrace(); } try { System.out.println( " 以字符为单位读取文件内容,一次读多个字节: " ); // 一次读多个字符 char [] tempchars = new char [ 30 ]; int charread = 0 ; reader = new InputStreamReader( new FileInputStream(fileName)); // 读入多个字符到字符数组中,charread为一次读取字符数 while ((charread = reader.read(tempchars)) != - 1 ) { // 同样屏蔽掉\r不显示 if ((charread == tempchars.length) && (tempchars[tempchars.length - 1 ] != ' \r ' )) { System.out.print(tempchars); } else { for ( int i = 0 ; i < charread; i ++ ) { if (tempchars[i] == ' \r ' ) { continue ; } else { System.out.print(tempchars[i]); } } } } } catch (Exception e1) { e1.printStackTrace(); } finally { if (reader != null ) { try { reader.close(); } catch (IOException e1) { } } } } /** * 以行为单位读取文件,常用于读面向行的格式化文件 */ public static void readFileByLines(String fileName) { File file = new File(fileName); BufferedReader reader = null ; try { System.out.println( " 以行为单位读取文件内容,一次读一整行: " ); reader = new BufferedReader( new FileReader(file)); String tempString = null ; int line = 1 ; // 一次读入一行,直到读入null为文件结束 while ((tempString = reader.readLine()) != null ) { // 显示行号 System.out.println( " line " + line + " : " + tempString); line ++ ; } reader.close(); } catch (IOException e) { e.printStackTrace(); } finally { if (reader != null ) { try { reader.close(); } catch (IOException e1) { } } } } /** * 随机读取文件内容 */ public static void readFileByRandomAccess(String fileName) { RandomAccessFile randomFile = null ; try { System.out.println( " 随机读取一段文件内容: " ); // 打开一个随机访问文件流,按只读方式 randomFile = new RandomAccessFile(fileName, " r " ); // 文件长度,字节数 long fileLength = randomFile.length(); // 读文件的起始位置 int beginIndex = (fileLength > 4 ) ? 4 : 0 ; // 将读文件的开始位置移到beginIndex位置。 randomFile.seek(beginIndex); byte [] bytes = new byte [ 10 ]; int byteread = 0 ; // 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。 // 将一次读取的字节数赋给byteread while ((byteread = randomFile.read(bytes)) != - 1 ) { System.out.write(bytes, 0 , byteread); } } catch (IOException e) { e.printStackTrace(); } finally { if (randomFile != null ) { try { randomFile.close(); } catch (IOException e1) { } } } } /** * 显示输入流中还剩的字节数 */ private static void showAvailableBytes(InputStream in) { try { System.out.println( " 当前字节输入流中的字节数为: " + in.available()); } catch (IOException e) { e.printStackTrace(); } } public static void main(String[] args) { String fileName = " C:/temp/newTemp.txt " ; ReadFromFile.readFileByBytes(fileName); ReadFromFile.readFileByChars(fileName); ReadFromFile.readFileByLines(fileName); ReadFromFile.readFileByRandomAccess(fileName); } } 5、将内容追加到文件尾部 public class AppendToFile { /** * A方法追加文件:使用RandomAccessFile */ public static void appendMethodA(String fileName, String content) { try { // 打开一个随机访问文件流,按读写方式 RandomAccessFile randomFile = new RandomAccessFile(fileName, " rw " ); // 文件长度,字节数 long fileLength = randomFile.length(); // 将写文件指针移到文件尾。 randomFile.seek(fileLength); randomFile.writeBytes(content); randomFile.close(); } catch (IOException e) { e.printStackTrace(); } } /** * B方法追加文件:使用FileWriter */ public static void appendMethodB(String fileName, String content) { try { // 打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件 FileWriter writer = new FileWriter(fileName, true ); writer.write(content); writer.close(); } catch (IOException e) { e.printStackTrace(); } } public static void main(String[] args) { String fileName = " C:/temp/newTemp.txt " ; String content = " new append! " ; // 按方法A追加文件 AppendToFile.appendMethodA(fileName, content); AppendToFile.appendMethodA(fileName, " append end. \n " ); // 显示文件内容 ReadFromFile.readFileByLines(fileName); // 按方法B追加文件 AppendToFile.appendMethodB(fileName, content); AppendToFile.appendMethodB(fileName, " append end. \n " ); // 显示文件内容 ReadFromFile.readFileByLines(fileName); } }
---------------------------------------------------------------------------------------------------------------------------------------
package com.file.test; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.StringTokenizer; /** * * @author xiaxr * */ public class FileOperate { private String message; public FileOperate() { } /** * 读取文本文件内容 * @param filePathAndName 带有完整绝对路径的文件名 * @param encoding 文本文件打开的编码方式 * @return 返回文本文件的内容 */ public String readTxt(String filePathAndName,String encoding) throws IOException{ encoding = encoding.trim(); StringBuffer str = new StringBuffer(""); String st = ""; try{ FileInputStream fs = new FileInputStream(filePathAndName); InputStreamReader isr; if(encoding.equals("")){ isr = new InputStreamReader(fs); }else{ isr = new InputStreamReader(fs,encoding); } BufferedReader br = new BufferedReader(isr); try{ String data = ""; while((data = br.readLine())!=null){ str.append(data+" "); } }catch(Exception e){ str.append(e.toString()); } st = str.toString(); }catch(IOException es){ st = ""; } return st; } /** * 新建目录 * @param folderPath 目录 * @return 返回目录创建后的路径 */ public String createFolder(String folderPath) { String txt = folderPath; try { java.io.File myFilePath = new java.io.File(txt); txt = folderPath; if (!myFilePath.exists()) { myFilePath.mkdir(); } } catch (Exception e) { message = "创建目录操作出错"; } return txt; } /** * 多级目录创建 * @param folderPath 准备要在本级目录下创建新目录的目录路径 例如 c:myf * @param paths 无限级目录参数,各级目录以单数线区分 例如 a|b|c * @return 返回创建文件后的路径 例如 c:myfac */ public String createFolders(String folderPath, String paths){ String txts = folderPath; try{ String txt; txts = folderPath; StringTokenizer st = new StringTokenizer(paths,"|"); for(int i=0; st.hasMoreTokens(); i++){ txt = st.nextToken().trim(); if(txts.lastIndexOf("/")!=-1){ txts = createFolder(txts+txt); }else{ txts = createFolder(txts+txt+"/"); } } }catch(Exception e){ message = "创建目录操作出错!"; } return txts; } /** * 新建文件 * @param filePathAndName 文本文件完整绝对路径及文件名 * @param fileContent 文本文件内容 * @return */ public void createFile(String filePathAndName, String fileContent) { try { String filePath = filePathAndName; filePath = filePath.toString(); File myFilePath = new File(filePath); if (!myFilePath.exists()) { myFilePath.createNewFile(); } FileWriter resultFile = new FileWriter(myFilePath); PrintWriter myFile = new PrintWriter(resultFile); String strContent = fileContent; myFile.println(strContent); myFile.close(); resultFile.close(); } catch (Exception e) { message = "创建文件操作出错"; } } /** * 有编码方式的文件创建 * @param filePathAndName 文本文件完整绝对路径及文件名 * @param fileContent 文本文件内容 * @param encoding 编码方式 例如 GBK 或者 UTF-8 * @return */ public void createFile(String filePathAndName, String fileContent, String encoding) { try { String filePath = filePathAndName; filePath = filePath.toString(); File myFilePath = new File(filePath); if (!myFilePath.exists()) { myFilePath.createNewFile(); } PrintWriter myFile = new PrintWriter(myFilePath,encoding); String strContent = fileContent; myFile.println(strContent); myFile.close(); } catch (Exception e) { message = "创建文件操作出错"; } } /** * 删除文件 * @param filePathAndName 文本文件完整绝对路径及文件名 * @return Boolean 成功删除返回true遭遇异常返回false */ public boolean delFile(String filePathAndName) { boolean bea = false; try { String filePath = filePathAndName; File myDelFile = new File(filePath); if(myDelFile.exists()){ myDelFile.delete(); bea = true; }else{ bea = false; message = (filePathAndName+"删除文件操作出错"); } } catch (Exception e) { message = e.toString(); } return bea; } /** * 删除文件夹 * @param folderPath 文件夹完整绝对路径 * @return */ public void delFolder(String folderPath) { try { delAllFile(folderPath); //删除完里面所有内容 String filePath = folderPath; filePath = filePath.toString(); java.io.File myFilePath = new java.io.File(filePath); myFilePath.delete(); //删除空文件夹 } catch (Exception e) { message = ("删除文件夹操作出错"); } } /** * 删除指定文件夹下所有文件 * @param path 文件夹完整绝对路径 * @return * @return */ public boolean delAllFile(String path) { boolean bea = false; File file = new File(path); if (!file.exists()) { return bea; } if (!file.isDirectory()) { return bea; } String[] tempList = file.list(); File temp = null; for (int i = 0; i < tempList.length; i++) { if (path.endsWith(File.separator)) { temp = new File(path + tempList[i]); }else{ temp = new File(path + File.separator + tempList[i]); } if (temp.isFile()) { temp.delete(); } if (temp.isDirectory()) { delAllFile(path+"/"+ tempList[i]);//先删除文件夹里面的文件 delFolder(path+"/"+ tempList[i]);//再删除空文件夹 bea = true; } } return bea; } /** * 复制单个文件 * @param oldPathFile 准备复制的文件源 * @param newPathFile 拷贝到新绝对路径带文件名 * @return */ public void copyFile(String oldPathFile, String newPathFile) { try { int bytesum = 0; int byteread = 0; File oldfile = new File(oldPathFile); if (oldfile.exists()) { //文件存在时 InputStream inStream = new FileInputStream(oldPathFile); //读入原文件 FileOutputStream fs = new FileOutputStream(newPathFile); byte[] buffer = new byte[1444]; while((byteread = inStream.read(buffer)) != -1){ bytesum += byteread; //字节数 文件大小 System.out.println(bytesum); fs.write(buffer, 0, byteread); } inStream.close(); } }catch (Exception e) { message = ("复制单个文件操作出错"); } } /** * 复制整个文件夹的内容 * @param oldPath 准备拷贝的目录 * @param newPath 指定绝对路径的新目录 * @return */ public void copyFolder(String oldPath, String newPath) { try { new File(newPath).mkdirs(); //如果文件夹不存在 则建立新文件夹 File a=new File(oldPath); String[] file=a.list(); File temp=null; for (int i = 0; i < file.length; i++) { if(oldPath.endsWith(File.separator)){ temp=new File(oldPath+file[i]); }else{ temp=new File(oldPath+File.separator+file[i]); } if(temp.isFile()){ FileInputStream input = new FileInputStream(temp); FileOutputStream output = new FileOutputStream(newPath + "/" + (temp.getName()).toString()); byte[] b = new byte[1024 * 5]; int len; while ((len = input.read(b)) != -1) { output.write(b, 0, len); } output.flush(); output.close(); input.close(); } if(temp.isDirectory()){//如果是子文件夹 copyFolder(oldPath+"/"+file[i],newPath+"/"+file[i]); } } }catch (Exception e) { message = "复制整个文件夹内容操作出错"; } } /** * 移动文件 * @param oldPath * @param newPath * @return */ public void moveFile(String oldPath, String newPath) { copyFile(oldPath, newPath); delFile(oldPath); } /** * 移动目录 * @param oldPath * @param newPath * @return */ public void moveFolder(String oldPath, String newPath) { copyFolder(oldPath, newPath); delFolder(oldPath); } public String getMessage(){ return this.message; } }