快精灵印艺坊 您身边的文印专家
广州名片 深圳名片 会员卡 贵宾卡 印刷 设计教程
产品展示 在线订购 会员中心 产品模板 设计指南 在线编辑
 首页 名片设计   CorelDRAW   Illustrator   AuotoCAD   Painter   其他软件   Photoshop   Fireworks   Flash  

 » 彩色名片
 » PVC卡
 » 彩色磁性卡
 » 彩页/画册
 » 个性印务
 » 彩色不干胶
 » 明信片
   » 明信片
   » 彩色书签
   » 门挂
 » 其他产品与服务
   » 创业锦囊
   » 办公用品
     » 信封、信纸
     » 便签纸、斜面纸砖
     » 无碳复印纸
   » 海报
   » 大篇幅印刷
     » KT板
     » 海报
     » 横幅

Think in java 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");   } }} ///:~




返回类别: 教程
上一教程: java日记:学习java一年体会4
下一教程: java 文件操作大全

您可以阅读与"Think in java Stream 经典"相关的教程:
· 我的Thinking in Java学习笔记(十)
· Thinking:Java中static、this、super、final用法
· [学习笔记]Thinking in Java (the 2nd edition) Study Note (4)
· [学习笔记]Thinking in Java (the 2nd edition) Study Note (3)
· Java Thread Programming 1.8.1 - Inter-thread Communication
    微笑服务 优质保证 索取样品