版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、一、多种方式读文件内容。1、按字节读取文件内容2、按字符读取文件内容3、按行读取文件内容4、随机读取文件内容import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.RandomAccessFile;import java.io.Reade
2、r; public class ReadFromFile /* * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。 * param fileName 文件的名 */public static void readFileByBytes(String fileName) File file = new File(fileName); InputStream in = null; try System.out.println(以字节为单位读取文件内容,一次读一个字节:); / 一次读一个字节 in = new FileInputStream(file); int tempbyt
3、e; while(tempbyte=in.read() != -1) System.out.write(tempbyte); in.close(); catch (IOException e) e.printStackTrace(); return; try System.out.println(以字节为单位读取文件内容,一次读多个字节:); /一次读多个字节 byte tempbytes = new byte100; int byteread = 0; in = new FileInputStream(fileName); ReadFromFile.showAvailableBytes(in
4、); /读入多个字节到字节数组中,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) /* * 以字符为单位读取文件,常用于读文本,数字等类型的文件 * param fileName 文件名 */public static void
5、 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下,这两个字符在一起时,表示一个换行。 /但如果这两个字符分开显示时
6、,会换两次行。 /因此,屏蔽掉,或者屏蔽。否则,将会多出很多空行。 if (char)tempchar) != ) System.out.print(char)tempchar); reader.close(); catch (Exception e) e.printStackTrace(); try System.out.println(以字符为单位读取文件内容,一次读多个字节:); /一次读多个字符 char tempchars = new char30; int charread = 0; reader = new InputStreamReader(new FileInputStrea
7、m(fileName); /读入多个字符到字符数组中,charread为一次读取字符数 while (charread = reader.read(tempchars)!=-1) /同样屏蔽掉不显示 if (charread = tempchars.length)&(tempcharstempchars.length-1 != ) System.out.print(tempchars); else for (int i=0; i 4) ? 4 : 0; /将读文件的开始位置移到beginIndex位置。 randomFile.seek(beginIndex); byte bytes = new
8、 byte10; 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) /* * 显示输入流中
9、还剩的字节数 * param in */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); ReadFromFi
10、le.readFileByChars(fileName); ReadFromFile.readFileByLines(fileName); ReadFromFile.readFileByRandomAccess(fileName);二、将内容追加到文件尾部import java.io.FileWriter;import java.io.IOException;import java.io.RandomAccessFile;/* 将内容追加到文件尾部*/public class AppendToFile /* * A方法追加文件:使用RandomAccessFile * param fileNa
11、me 文件名 * param content 追加的内容 */public static void appendMethodA(String fileName, String content) try / 打开一个随机访问文件流,按读写方式 RandomAccessFile randomFile = new RandomAccessFile(fileName, rw); / 文件长度,字节数 long fileLength = randomFile.length(); /将写文件指针移到文件尾。 randomFile.seek(fileLength); randomFile.writeByte
12、s(content); randomFile.close(); catch (IOException e) e.printStackTrace(); /* * B方法追加文件:使用FileWriter * param fileName * param content */public static void appendMethodB(String fileName, String content) try /打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件 FileWriter writer = new FileWriter(fileName, true); writer
13、.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. ); /显示文件内容 R
14、eadFromFile.readFileByLines(fileName); /按方法B追加文件 AppendToFile.appendMethodB(fileName, content); AppendToFile.appendMethodB(fileName, append end. ); /显示文件内容 ReadFromFile.readFileByLines(fileName);三文件的各种操作类import java.io.*;/* FileOperate.java* 文件的各种操作* author 杨彩 /m/yangcai* 文件操作
15、1.0*/public class FileOperatepublic FileOperate()/* 新建目录*/public void newFolder(String folderPath)tryString filePath = folderPath;filePath = filePath.toString();File myFilePath = new File(filePath);if(!myFilePath.exists()myFilePath.mkdir();System.out.println(新建目录操作 成功执行);catch(Exception e)System.out
16、.println(新建目录操作出错);e.printStackTrace();/* 新建文件*/public void newFile(String filePathAndName, String fileContent)tryString filePath = filePathAndName;filePath = filePath.toString();File myFilePath = new File(filePath);if (!myFilePath.exists()myFilePath.createNewFile();FileWriter resultFile = new FileW
17、riter(myFilePath);PrintWriter myFile = new PrintWriter(resultFile);String strContent = fileContent;myFile.println(strContent);resultFile.close();System.out.println(新建文件操作 成功执行);catch (Exception e)System.out.println(新建目录操作出错);e.printStackTrace();/* 删除文件*/public void delFile(String filePathAndName)try
18、String filePath = filePathAndName;filePath = filePath.toString();File myDelFile = new File(filePath);myDelFile.delete();System.out.println(删除文件操作 成功执行);catch (Exception e)System.out.println(删除文件操作出错);e.printStackTrace();/* 删除文件夹*/public void delFolder(String folderPath)trydelAllFile(folderPath); /删除
19、完里面所有内容String filePath = folderPath;filePath = filePath.toString();File myFilePath = new File(filePath);if(myFilePath.delete() /删除空文件夹System.out.println(删除文件夹 + folderPath + 操作 成功执行); else System.out.println(删除文件夹 + folderPath + 操作 执行失败);catch (Exception e)System.out.println(删除文件夹操作出错);e.printStackT
20、race();/* 删除文件夹里面的所有文件* param path String 文件夹路径 如 c:/fqf*/public void delAllFile(String path)File file = new File(path);if(!file.exists()return;if(!file.isDirectory()return;String tempList = file.list();File temp = null;for (int i = 0; i tempList.length; i+)if(path.endsWith(File.separator)temp = new
21、 File(path + tempListi);elsetemp = new File(path + File.separator + tempListi);if (temp.isFile()temp.delete();if (temp.isDirectory()/delAllFile(path+/+ tempListi);/先删除文件夹里面的文件delFolder(path+ File.separatorChar + tempListi);/再删除空文件夹System.out.println(删除文件操作 成功执行);/* 复制单个文件* param oldPath String 原文件路径
22、 如:c:/fqf.txt* param newPath String 复制后路径 如:f:/fqf.txt*/public void copyFile(String oldPath, String newPath)tryint bytesum = 0;int byteread = 0;File oldfile = new File(oldPath);if (oldfile.exists()/文件存在时InputStream inStream = new FileInputStream(oldPath); /读入原文件FileOutputStream fs = new FileOutputSt
23、ream(newPath);byte buffer = new byte1444;while ( (byteread = inStream.read(buffer) != -1)bytesum += byteread; /字节数 文件大小System.out.println(bytesum);fs.write(buffer, 0, byteread);inStream.close();System.out.println(删除文件夹操作 成功执行);catch (Exception e)System.out.println(复制单个文件操作出错);e.printStackTrace();/*
24、复制整个文件夹内容* param oldPath String 原文件路径 如:c:/fqf* param newPath String 复制后路径 如:f:/fqf/ff*/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.end
25、sWith(File.separator)temp=new File(oldPath+filei);elsetemp=new File(oldPath+File.separator+filei);if(temp.isFile()FileInputStream input = new FileInputStream(temp);FileOutputStream output = new FileOutputStream(newPath + / +(temp.getName().toString();byte b = new byte1024 * 5;int len;while ( (len =
26、input.read(b) != -1)output.write(b, 0, len);output.flush();output.close();input.close();if(temp.isDirectory()/如果是子文件夹copyFolder(oldPath+/+filei,newPath+/+filei);System.out.println(复制文件夹操作 成功执行);catch (Exception e)System.out.println(复制整个文件夹内容操作出错);e.printStackTrace();/* 移动文件到指定目录* param oldPath Strin
27、g 如:c:/fqf.txt* param newPath String 如:d:/fqf.txt*/public void moveFile(String oldPath, String newPath)copyFile(oldPath, newPath);delFile(oldPath);/* 移动文件到指定目录* param oldPath String 如:c:/fqf.txt* param newPath String 如:d:/fqf.txt*/public void moveFolder(String oldPath, String newPath)copyFolder(oldP
28、ath, newPath);delFolder(oldPath);public static void main(String args)String aa,bb;boolean exitnow=false;System.out.println(使用此功能请按1 功能一:新建目录);System.out.println(使用此功能请按2 功能二:新建文件);System.out.println(使用此功能请按3 功能三:删除文件);System.out.println(使用此功能请按4 功能四:删除文件夹);System.out.println(使用此功能请按5 功能五:删除文件夹里面的所有文
29、件);System.out.println(使用此功能请按6 功能六:复制文件);System.out.println(使用此功能请按7 功能七:复制文件夹的所有内容);System.out.println(使用此功能请按8 功能八:移动文件到指定目录);System.out.println(使用此功能请按9 功能九:移动文件夹到指定目录);System.out.println(使用此功能请按10 退出程序);while(!exitnow)FileOperate fo=new FileOperate();tryBufferedReader Bin=new BufferedReader(new
30、InputStreamReader(System.in);String a=Bin.readLine();int b=Integer.parseInt(a);switch(b)case 1:System.out.println(你选择了功能一 请输入目录名);aa=Bin.readLine();fo.newFolder(aa);break;case 2:System.out.println(你选择了功能二 请输入文件名);aa=Bin.readLine();System.out.println(请输入在+aa+中的内容);bb=Bin.readLine();fo.newFile(aa,bb);
31、break;case 3:System.out.println(你选择了功能三 请输入文件名);aa=Bin.readLine();fo.delFile(aa);break;case 4:System.out.println(你选择了功能四 请输入文件名);aa=Bin.readLine();fo.delFolder(aa);break;case 5:System.out.println(你选择了功能五 请输入文件名);aa=Bin.readLine();fo.delAllFile(aa);break;case 6:System.out.println(你选择了功能六 请输入文件名);aa=Bin.readLine();System.out.println(请输入目标文件名);bb=Bin.readLine();fo.copyFile(
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 传染病信息公布制度
- 人才代理制度
- 中国进口大豆制度
- 凉州区高坝镇人民政府2025年公开招聘专业化管理大学生村文书(补充)备考题库及答案详解1套
- 2025-2030淄博硼氢化钠行业市场现状供需平衡分析评估投资规划分析研究报告
- 2025-2030中国红外隐身粘合剂行业销售战略规划及投资效益分析研究报告
- 2025至2030中国再生塑料循环经济模式与政策支持研究报告
- 2025至2030中国污水处理膜技术应用场景拓展与运营效率提升分析报告
- 2025至2030中国儿童教育市场细分领域与增长动力研究报告
- 南京医科大学2026年招聘人事代理人员备考题库及一套答案详解
- T-CSUS 69-2024 智慧水务技术标准
- 国家开放大学法学本科《商法》历年期末考试试题及答案题库
- UL583标准中文版-2018电动工业车辆UL中文版标准
- 钢结构加工制造工艺
- 2024年新华东师大版七年级上册数学全册教案(新版教材)
- 新版高中物理必做实验目录及器材-(电子版)
- 冀人版五年级科学上册期末测试卷4份(含答案)
- 菜肴造型与盛装工艺
- 甲状腺癌医学知识讲座
- ABAQUS在隧道及地下工程中的应用
- 工作汇报PPT(山与海之歌动态)大气震撼模板
评论
0/150
提交评论