Think in java Stream 經典

來源:互聯網
上載者:User
stream
import java.io.*;

public class NewIODemo {public static void main(String[] args) { try {   // 1. Reading input by lines:   BufferedReader in =   new BufferedReader(   new FileReader(args[0]));   String s, s2 = new String();   while((s = in.readLine())!= null)   s2 += s + "\n";   in.close();    // 1b. Reading standard input:   BufferedReader stdin =    new BufferedReader(     new InputStreamReader(System.in));    System.out.print("Enter a line:");   System.out.println(stdin.readLine());      // 2. Input from memory   StringReader in2 = new StringReader(s2);   int c;   while((c = in2.read()) != -1)    System.out.print((char)c);      // 3. Formatted memory input   try {     DataInputStream in3 =     new DataInputStream(     // Oops: must use deprecated class:     new StringBufferInputStream(s2));     while(true)      System.out.print((char)in3.readByte());   } catch(EOFException e) {      System.out.println("End of stream");   }      // 4. Line numbering & file output   try {     LineNumberReader li =      new LineNumberReader(       new StringReader(s2));     BufferedReader in4 =      new BufferedReader(li);     PrintWriter out1 =      new PrintWriter(       new BufferedWriter(        new FileWriter("IODemo.out")));     while((s = in4.readLine()) != null )     out1.println(      "Line " + li.getLineNumber() + s);     out1.close();   } catch(EOFException e) {     System.out.println("End of stream");   }      // 5. Storing & recovering data   try {     DataOutputStream out2 =     new DataOutputStream(       new BufferedOutputStream(         new FileOutputStream("Data.txt")));     out2.writeDouble(3.14159);     out2.writeBytes("That was pi");     out2.close();     DataInputStream in5 =     new DataInputStream(      new BufferedInputStream(       new FileInputStream("Data.txt")));     BufferedReader in5br =       new BufferedReader(         new InputStreamReader(in5));     // Must use DataInputStream for data:     System.out.println(in5.readDouble());     // Can now use the "proper" readLine():     System.out.println(in5br.readLine());   } catch(EOFException e) {     System.out.println("End of stream");   }      // 6. Reading and writing random access   // files is the same as before.   // (not repeated here)      } catch(FileNotFoundException e) {     System.out.println(     "File Not Found:" + args[1]);   } catch(IOException e) {     System.out.println("IO Exception");   } }} ///:~


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.