JAVA基础------IO操作(二)

来源:互联网 发布:云计算与大数据前景 编辑:程序博客网 时间:2024/04/30 13:18
 

字符流

【向文件中写入数据】

现在我们使用字符流

  1. /**  
  2.  * 字符流  
  3.  * 写入数据  
  4.  * */ 
  5. import java.io.*;  
  6. class hello{  
  7.     public static void main(String[] args) throws IOException {  
  8.         String fileName="D:"+File.separator+"hello.txt";  
  9.         File f=new File(fileName);  
  10.         Writer out =new FileWriter(f);  
  11.         String str="hello";  
  12.         out.write(str);  
  13.         out.close();  
  14.     }  

当你打开hello。txt的时候,会看到hello

其实这个例子上之前的例子没什么区别,只是你可以直接输入字符串,而不需要你将字符串转化为字节数组。

当你如果想问文件中追加内容的时候,可以使用将上面的声明out的哪一行换为:

Writer out =new FileWriter(f,true);

这样,当你运行程序的时候,会发现文件内容变为:

hellohello如果想在文件中换行的话,需要使用“\r\n”

比如将str变为String str="\r\nhello";

这样文件追加的str的内容就会换行了。

从文件中读内容:

  1. /**  
  2.  * 字符流  
  3.  * 从文件中读出内容  
  4.  * */ 
  5. import java.io.*;  
  6. class hello{  
  7.     public static void main(String[] args) throws IOException {  
  8.         String fileName="D:"+File.separator+"hello.txt";  
  9.         File f=new File(fileName);  
  10.         char[] ch=new char[100];  
  11.         Reader read=new FileReader(f);  
  12.         int count=read.read(ch);  
  13.         read.close();  
  14.         System.out.println("读入的长度为:"+count);  
  15.         System.out.println("内容为"+new String(ch,0,count));  
  16.     }  

【运行结果】:

读入的长度为:17

内容为hellohello

hello

当然最好采用循环读取的方式,因为我们有时候不知道文件到底有多大。

  1. /**  
  2.  * 字符流  
  3.  * 从文件中读出内容  
  4.  * */ 
  5. import java.io.*;  
  6. class hello{  
  7.     public static void main(String[] args) throws IOException {  
  8.         String fileName="D:"+File.separator+"hello.txt";  
  9.         File f=new File(fileName);  
  10.         char[] ch=new char[100];  
  11.         Reader read=new FileReader(f);  
  12.         int temp=0;  
  13.         int count=0;  
  14.         while((temp=read.read())!=(-1)){  
  15.             ch[count++]=(char)temp;  
  16.         }  
  17.         read.close();  
  18.         System.out.println("内容为"+new String(ch,0,count));  
  19.     }  

运行结果:

内容为hellohello

hello

关于字节流和字符流的区别

实际上字节流在操作的时候本身是不会用到缓冲区的,是文件本身的直接操作的,但是字符流在操作的 时候下后是会用到缓冲区的,是通过缓冲区来操作文件的。

读者可以试着将上面的字节流和字符流的程序的最后一行关闭文件的代码注释掉,然后运行程序看看。你就会发现使用字节流的话,文件中已经存在内容,但是使用字符流的时候,文件中还是没有内容的,这个时候就要刷新缓冲区。

使用字节流好还是字符流好呢?

答案是字节流。首先因为硬盘上的所有文件都是以字节的形式进行传输或者保存的,包括图片等内容。但是字符只是在内存中才会形成的,所以在开发中,字节流使用广泛。

文件的复制

其实DOS下就有一个文件复制功能,比如我们想把d盘下面的hello.txt文件复制到d盘下面的rollen.txt文件中,那么我们就可以使用下面的命令:

copy d:\hello.txt d:\rollen.txt

运行之后你会在d盘中看见hello.txt.,并且两个文件的内容是一样的,(这是屁话)

下面我们使用程序来复制文件吧。

基本思路还是从一个文件中读入内容,边读边写入另一个文件,就是这么简单。、

首先编写下面的代码:

  1. /**  
  2.  * 文件的复制  
  3.  * */ 
  4. import java.io.*;  
  5. class hello{  
  6.     public static void main(String[] args) throws IOException {  
  7.         if(args.length!=2){  
  8.             System.out.println("命令行参数输入有误,请检查");  
  9.             System.exit(1);  
  10.         }  
  11.         File file1=new File(args[0]);  
  12.         File file2=new File(args[1]);  
  13.           
  14.         if(!file1.exists()){  
  15.             System.out.println("被复制的文件不存在");  
  16.             System.exit(1);  
  17.         }  
  18.         InputStream input=new FileInputStream(file1);  
  19.         OutputStream output=new FileOutputStream(file2);  
  20.         if((input!=null)&&(output!=null)){  
  21.             int temp=0;  
  22.             while((temp=input.read())!=(-1)){  
  23.                 output.write(temp);  
  24.             }  
  25.         }  
  26.         input.close();  
  27.         output.close();   
  28.     }  

然后在命令行下面

javac hello.java

java hello d:\hello.txt d:\rollen.txt

现在你就会在d盘看到rollen。txt了,

OutputStreramWriter 和InputStreamReader类

整个IO类中除了字节流和字符流还包括字节和字符转换流。

OutputStreramWriter将输出的字符流转化为字节流

InputStreamReader将输入的字节流转换为字符流

但是不管如何操作,最后都是以字节的形式保存在文件中的。

将字节输出流转化为字符输出流

  1. /**  
  2.  * 将字节输出流转化为字符输出流  
  3.  * */ 
  4. import java.io.*;  
  5. class hello{  
  6.     public static void main(String[] args) throws IOException {  
  7.         String fileName= "d:"+File.separator+"hello.txt";  
  8.         File file=new File(fileName);  
  9.         Writer out=new OutputStreamWriter(new FileOutputStream(file));  
  10.         out.write("hello");  
  11.         out.close();  
  12.     }  

运行结果:文件中内容为:hello

将字节输入流变为字符输入流

  1. /**  
  2.  * 将字节输入流变为字符输入流  
  3.  * */ 
  4. import java.io.*;  
  5. class hello{  
  6.     public static void main(String[] args) throws IOException {  
  7.         String fileName= "d:"+File.separator+"hello.txt";  
  8.         File file=new File(fileName);  
  9.         Reader read=new InputStreamReader(new FileInputStream(file));  
  10.         char[] b=new char[100];  
  11.         int len=read.read(b);  
  12.         System.out.println(new String(b,0,len));  
  13.         read.close();  
  14.     }  

【运行结果】:hello

前面列举的输出输入都是以文件进行的,现在我们以内容为输出输入目的地,使用内存操作流

ByteArrayInputStream 主要将内容写入内容

ByteArrayOutputStream 主要将内容从内存输出

使用内存操作流将一个大写字母转化为小写字母

  1. /**  
  2.  * 使用内存操作流将一个大写字母转化为小写字母  
  3.  * */ 
  4. import java.io.*;  
  5. class hello{  
  6.     public static void main(String[] args) throws IOException {  
  7.         String str="ROLLENHOLT";  
  8.         ByteArrayInputStream input=new ByteArrayInputStream(str.getBytes());  
  9.         ByteArrayOutputStream output=new ByteArrayOutputStream();  
  10.         int temp=0;  
  11.         while((temp=input.read())!=-1){  
  12.             char ch=(char)temp;  
  13.             output.write(Character.toLowerCase(ch));  
  14.         }  
  15.         String outStr=output.toString();  
  16.         input.close();  
  17.         output.close();  
  18.         System.out.println(outStr);  
  19.     }  

【运行结果】:

rollenholt

内容操作流一般使用来生成一些临时信息采用的,这样可以避免删除的麻烦。

 

管道流

管道流主要可以进行两个线程之间的通信。

PipedOutputStream 管道输出流

PipedInputStream 管道输入流

验证管道流

 

  1. /**  
  2.  * 验证管道流  
  3.  * */ 
  4. import java.io.*;  
  5.  
  6. /**  
  7.  * 消息发送类  
  8.  * */ 
  9. class Send implements Runnable{  
  10.     private PipedOutputStream out=null;  
  11.     public Send() {  
  12.         out=new PipedOutputStream();  
  13.     }  
  14.     public PipedOutputStream getOut(){  
  15.         return this.out;  
  16.     }  
  17.     public void run(){  
  18.         String message="hello , Rollen";  
  19.         try{  
  20.             out.write(message.getBytes());  
  21.         }catch (Exception e) {  
  22.             e.printStackTrace();  
  23.         }try{  
  24.             out.close();  
  25.         }catch (Exception e) {  
  26.             e.printStackTrace();  
  27.         }  
  28.     }  
  29. }  
  30.  
  31. /**  
  32.  * 接受消息类  
  33.  * */ 
  34. class Recive implements Runnable{  
  35.     private PipedInputStream input=null;  
  36.     public Recive(){  
  37.         this.input=new PipedInputStream();  
  38.     }  
  39.     public PipedInputStream getInput(){  
  40.         return this.input;  
  41.     }  
  42.     public void run(){  
  43.         byte[] b=new byte[1000];  
  44.         int len=0;  
  45.         try{  
  46.             len=this.input.read(b);  
  47.         }catch (Exception e) {  
  48.             e.printStackTrace();  
  49.         }try{  
  50.             input.close();  
  51.         }catch (Exception e) {  
  52.             e.printStackTrace();  
  53.         }  
  54.         System.out.println("接受的内容为 "+(new String(b,0,len)));  
  55.     }  
  56. }  
  57. /**  
  58.  * 测试类  
  59.  * */ 
  60. class hello{  
  61.     public static void main(String[] args) throws IOException {  
  62.         Send send=new Send();  
  63.         Recive recive=new Recive();  
  64.         try{  
  65. //管道连接  
  66.             send.getOut().connect(recive.getInput());  
  67.         }catch (Exception e) {  
  68.             e.printStackTrace();  
  69.         }  
  70.         new Thread(send).start();  
  71.         new Thread(recive).start();  
  72.     }  

【运行结果】:
 

接受的内容为 hello , Rollen

打印流

 

  1. /**  
  2.  * 使用PrintStream进行输出  
  3.  * */ 
  4. import java.io.*;  
  5.  
  6. class hello {  
  7.     public static void main(String[] args) throws IOException {  
  8.         PrintStream print = new PrintStream(new FileOutputStream(new File("d:" 
  9.                 + File.separator + "hello.txt")));  
  10.         print.println(true);  
  11.         print.println("Rollen");  
  12.         print.close();  
  13.     }  

【运行结果】:

true

Rollen

当然也可以格式化输出

 

  1. /**  
  2.  * 使用PrintStream进行输出  
  3.  * 并进行格式化  
  4.  * */ 
  5. import java.io.*;  
  6. class hello {  
  7.     public static void main(String[] args) throws IOException {  
  8.         PrintStream print = new PrintStream(new FileOutputStream(new File("d:" 
  9.                 + File.separator + "hello.txt")));  
  10.         String name="Rollen";  
  11.         int age=20;  
  12.         print.printf("姓名:%s. 年龄:%d.",name,age);  
  13.         print.close();  
  14.     }  

【运行结果】:

姓名:Rollen. 年龄:20.

使用OutputStream向屏幕上输出内容

 

  1. /**  
  2.  * 使用OutputStream向屏幕上输出内容   
  3.  * */ 
  4. import java.io.*;  
  5. class hello {  
  6.     public static void main(String[] args) throws IOException {  
  7.         OutputStream out=System.out;  
  8.         try{  
  9.             out.write("hello".getBytes());  
  10.         }catch (Exception e) {  
  11.             e.printStackTrace();  
  12.         }  
  13.         try{  
  14.             out.close();  
  15.         }catch (Exception e) {  
  16.             e.printStackTrace();  
  17.         }  
  18.     }  

【运行结果】:

hello

输入输出重定向

 

  1. import java.io.File;  
  2. import java.io.FileNotFoundException;  
  3. import java.io.FileOutputStream;  
  4. import java.io.PrintStream;  
  5.  
  6. /**  
  7.  * 为System.out.println()重定向输出  
  8.  * */ 
  9. public class systemDemo{  
  10.     public static void main(String[] args){  
  11.         // 此刻直接输出到屏幕  
  12.         System.out.println("hello");  
  13.         File file = new File("d:" + File.separator + "hello.txt");  
  14.         try{  
  15.             System.setOut(new PrintStream(new FileOutputStream(file)));  
  16.         }catch(FileNotFoundException e){  
  17.             e.printStackTrace();  
  18.         }  
  19.         System.out.println("这些内容在文件中才能看到哦!");  
  20.     }  

【运行结果】:

eclipse的控制台输出的是hello。然后当我们查看d盘下面的hello.txt文件的时候,会在里面看到:这些内容在文件中才能看到哦!

 

  1. import java.io.File;  
  2. import java.io.FileNotFoundException;  
  3. import java.io.FileOutputStream;  
  4. import java.io.PrintStream;  
  5.  
  6. /**  
  7.  * System.err重定向 这个例子也提示我们可以使用这种方法保存错误信息  
  8.  * */ 
  9. public class systemErr{  
  10.     public static void main(String[] args){  
  11.         File file = new File("d:" + File.separator + "hello.txt");  
  12.         System.err.println("这些在控制台输出");  
  13.         try{  
  14.             System.setErr(new PrintStream(new FileOutputStream(file)));  
  15.         }catch(FileNotFoundException e){  
  16.             e.printStackTrace();  
  17.         }  
  18.         System.err.println("这些在文件中才能看到哦!");  
  19.     }  

【运行结果】:

你会在eclipse的控制台看到红色的输出:“这些在控制台输出”,然后在d盘下面的hello.txt中会看到:这些在文件中才能看到哦!

 

  1. import java.io.File;  
  2. import java.io.FileInputStream;  
  3. import java.io.FileNotFoundException;  
  4. import java.io.IOException;  
  5.  
  6. /**  
  7.  * System.in重定向  
  8.  * */ 
  9. public class systemIn{  
  10.     public static void main(String[] args){  
  11.         File file = new File("d:" + File.separator + "hello.txt");  
  12.         if(!file.exists()){  
  13.             return;  
  14.         }else{  
  15.             try{  
  16.                 System.setIn(new FileInputStream(file));  
  17.             }catch(FileNotFoundException e){  
  18.                 e.printStackTrace();  
  19.             }  
  20.             byte[] bytes = new byte[1024];  
  21.             int len = 0;  
  22.             try{  
  23.                 len = System.in.read(bytes);  
  24.             }catch(IOException e){  
  25.                 e.printStackTrace();  
  26.             }  
  27.             System.out.println("读入的内容为:" + new String(bytes, 0, len));  
  28.         }  
  29.     }  

【运行结果】:

前提是我的d盘下面的hello.txt中的内容是:“这些文件中的内容哦!”,然后运行程序,输出的结果为:读入的内容为:这些文件中的内容哦!

BufferedReader的小例子

注意: BufferedReader只能接受字符流的缓冲区,因为每一个中文需要占据两个字节,所以需要将System.in这个字节输入流变为字符输入流,采用:

 

  1. BufferedReader buf = new BufferedReader(  
  2.                 new InputStreamReader(System.in)); 

下面给一个实例:

 

  1. import java.io.BufferedReader;  
  2. import java.io.IOException;  
  3. import java.io.InputStreamReader;  
  4.  
  5. /**  
  6.  * 使用缓冲区从键盘上读入内容  
  7.  * */ 
  8. public class BufferedReaderDemo{  
  9.     public static void main(String[] args){  
  10.         BufferedReader buf = new BufferedReader(  
  11.                 new InputStreamReader(System.in));  
  12.         String str = null;  
  13.         System.out.println("请输入内容");  
  14.         try{  
  15.             str = buf.readLine();  
  16.         }catch(IOException e){  
  17.             e.printStackTrace();  
  18.         }  
  19.         System.out.println("你输入的内容是:" + str);  
  20.     }  

运行结果:

请输入内容

dasdas

你输入的内容是:dasdas

 

原创粉丝点击