版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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~2026学年河北邯郸市高一年级上学期2月期末总结考生物试卷
- 2025~2026学年江西奉新县第四中学上学期期末考试高一生物试卷
- 脑外伤患者危机干预与护理
- 2026年生态环境损害赔偿诉讼知识试题
- 2026年残疾人基本服务状况与需求调查题
- 2026年事业单位奖励规定与表彰种类适用测试
- 2026年预防未成年人犯罪法题库
- 2026年先行登记保存及证据先行登记测试题
- 2026年社会公益组织的运营管理案例案例学习及题目集
- 2026年电气工程专业知识点与实战演练
- 食堂操作间卫生管理制度
- 湖北省云学名校联盟2024-2025学年高二下学期4月期中联考语文试题 含解析
- 能源与动力工程测试技术 课件 第十一章 振动与噪声测量
- 《5G无线网规划设计规程》
- JTS-167-8-2013水运工程先张法预应力高强混凝土管桩设计与施工规程
- JTGT H21-2011 公路桥梁技术状况评定标准
- 家长会课件:八年级下学期期中家长会课件
- 人工智能的伦理问题及其治理研究
- 1年级多届YMO数学初选试卷汇编
- 食堂装修改造工程施工部署
- 机械租赁合同电子版
评论
0/150
提交评论