Java实用教程第16讲IO(一)_第1页
Java实用教程第16讲IO(一)_第2页
Java实用教程第16讲IO(一)_第3页
Java实用教程第16讲IO(一)_第4页
Java实用教程第16讲IO(一)_第5页
已阅读5页,还剩10页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、第第16讲讲 I/O一)一) 16.1 File类类 16.2 文件过滤器文件过滤器 16.3 流流 16.4 字节流和缓冲字节流字节流和缓冲字节流 16.5 字符流和缓冲字节流字符流和缓冲字节流 16.6 本讲小结本讲小结 Java提供了丰富的类以实现与文件、控制台、网络等进行通信,而通信的方式可以按字节或字符的方式进行,可以是顺序读取数据,也可以是随机读取数据。16.1 File类类 File类的对象既可以表示文件,也表示目录。我们可以在相对路径下创建文件或目录,也可以在绝度路径下创建文件或路径。在创建文件或路径时,要特别注意路径中文件的分隔符,不同的操作系统中,文件分隔符是不同。“/”是

2、UNIX下的分隔符,而Windows下为“”,为了使程序具有良好的移植性,最好使用File.separator。16.2 文件过滤器文件过滤器 我们还可以做一个文件过滤器,只列出符合条件的文件。下面代码列出当前目录下所有的.txt文件: public class FileFilter String suffix; public void showFiles(String path,String suffix) this.suffix = suffix; File file = new File(path); String name = file.list(new MyFileFilter();

3、 for(int i = 0;i name.length;i+) System.out.println(namei); class MyFileFilter implements FilenameFilter public boolean accept(File dir,String name) return name.endsWith(suffix); 16.3 流流 Java使用流的方式读写硬盘、内存、键盘等设备上的数据。按照流的方向,可以分为输入流和输出流。按照要处理的数据类型,可以分为字节流和字符流。 java.io包中。所有输入流类是InputStream和Reader的子类,所有输

4、出流类都是OutputStream和Writer的子类。其中InputStream和OutputStream表示字节流,Reader和Writer表示字符流。16.4 字节流和缓冲字节流字节流和缓冲字节流 字节流可以处理所有类型的数据,视频、音频、图片、文本等,读取时按照字节读取,读到一个字节就返回一个字节。/字节流处理读写文本文件的示例import java.io.*;public class RWByStreamOne public static void main(String args) try FileInputStream fis = new FileInputStream(tes

5、t.txt); FileOutputStream fos = new FileOutputStream(test_new.txt); byte b = new byte10;int a = 0;while(a = fis.read(b)!=-1) fos.write(b, 0, a); fos.flush();fos.close();fis.close(); catch (IOException e) e.printStackTrace();/缓冲字节流读取视频文件的示例import java.io.*;public class RWByBufferedStream public static

6、 void main(String args) try FileInputStream fis = new FileInputStream(a.mp4); /内存的大小是经验值,可以通过多次运行程序而定BufferedInputStream bis = new BufferedInputStream(fis,1024*100);FileOutputStream fos = new FileOutputStream(a_new.mp4);BufferedOutputStream bos = new BufferedOutputStream(fos,1024*100);byte b = new b

7、yte100;int a = 0;long start = System.currentTimeMillis();while(a = bis.read(b)!=-1)bos.write(b, 0, a);bos.flush();bos.close();fos.close();bis.close();fis.close();long stop = System.currentTimeMillis();System.out.println(所用时间:+(stop-start)+ms); catch (IOException e) e.printStackTrace();16.5 字符流和缓冲字符流

8、字符流和缓冲字符流 字符流只能处理纯文本数据,读取时,读取一个或多个字符,然后查找指定的编码表,将查到的字符返回。public class RWByReaderAndWriter public static void main(String args) tryFileReader fis = new FileReader(test.txt);FileWriter fos = new FileWriter(test_new.txt);char b = new char10;int a = 0;while(a = fis.read(b)!=-1)fos.write(b, 0, a);fos.flu

9、sh();fos.close();fis.close(); catch (IOException e) e.printStackTrace();缓冲字符流可以提高字符流的读取效率,示例代码如下:public class RWByBufferedChar public static void main(String args) try FileReader fis = new FileReader(test.txt);BufferedReader br = new BufferedReader(fis);FileWriter fos = new FileWriter(test_new.txt);

10、BufferedWriter bw = new BufferedWriter(fos);String s;while(s = br.readLine()!=null) bw.write(s+n); bw.flush();bw.close();fos.close(); br.close();fis.close(); catch (IOException e) e.printStackTrace(); Java还提供了一个高效输出字符串的类:PrintWriter。示例代码如下:import java.io.*;public class RByPrintWriter public static v

11、oid main(String args) tryFileReader fis = new FileReader(test.txt);BufferedReader br = new BufferedReader(fis);PrintWriter pw = new PrintWriter(test_new.txt);String s;while(s = br.readLine()!=null)pw.println(s);pw.flush();pw.close();br.close();fis.close(); catch (IOException e) e.printStackTrace();16.6 本讲小结本讲小结 本讲

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论