中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java流操作之數據流的示例分析

發布時間:2021-07-21 13:59:46 來源:億速云 閱讀:127 作者:小新 欄目:編程語言

這篇文章主要介紹Java流操作之數據流的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

 實例1:

package dataInputStreamAndPrintStreamDemo; 
import java.io.BufferedInputStream; 
import java.io.BufferedOutputStream; 
import java.io.DataInputStream; 
import java.io.DataOutputStream; 
import java.io.IOException; 
import java.io.PrintStream; 
//示范如何自鍵盤讀入字符串,并使用DataInputStream,PrintStream類將程序執行顯示在屏幕(標準輸出)上 
public class DataInputStreamAndPrintStreamDemo { 
 public static void main(String[] args) { 
 int count; 
 byte input[] = new byte[256]; 
 String InputString; 
 // 鍵盤讀入 
 DataInputStream stdin = new DataInputStream(System.in); 
 //提高執行效率,幾乎所有的InputStream類都可以被BufferedStream類包覆(wrap)來提高I/O效率 
 BufferedInputStream bufin = new BufferedInputStream(stdin); 
 // 屏幕輸出 
 DataOutputStream stdout = new DataOutputStream(System.out);// 將結果輸出至屏幕 
 BufferedOutputStream bufout = new BufferedOutputStream(stdout);// 提高輸出效率 
 PrintStream p = new PrintStream(System.out);// 將結果輸出至屏幕 
 try { 
 if (bufin.markSupported()) { 
 p.println("支持串流標記:是");// 使用PrintStream輸出 
 p.println("輸入字符串,結束請按【Enter】...\n" + "=>"); 
 //使得流在第一個位被作上標記(mark),并且會保留256位(mark(256)) 
 bufin.mark(256); 
 //讀取字節并存放在指定的數組中 
 count = bufin.read(input); 
 p.println("讀入字符數:" + count); 
 p.print("你輸入的字符串為:"); 
 // 寫入流,只是將數據寫入流中而已,并不輸出數據 
 // 所以在其后必須使用flush()函數將流中的數據強制輸出 
 bufout.write(input, 0, count); 
 bufout.flush();// 強制輸出至指定的輸出裝置 
 bufin.reset();// 將讀取位置移至標記處,也就是流中的第一位 
 bufin.read(input, 0, count); 
 p.print("字符串的前半段:"); 
 bufout.write(input, 0, count / 2); 
 //相當于System.out.println(); 
 bufout.write((int)('\n')); 
 bufout.flush(); 
 bufin.reset(); 
 bufin.skip(count / 2); 
 bufin.read(input, 0, count / 2); 
 p.print("字符串的后半段:"); 
 bufout.write(input, 0, count / 2); 
 bufout.flush(); 
 } else { 
 System.out.println("字符串流標記:否"); 
 } 
 // 關閉流 
 p.close(); 
 stdin.close(); 
 bufin.close(); 
 stdout.close(); 
 bufout.close(); 
 } catch (IOException E) { 
 System.out.println("發生I/O錯誤!!!"); 
 } 
 } 
} 
//其實我們對PrintStream類應該很熟悉才對,System.out就是一個PrintStream類對象,其提供的print()和println()函數 
//幾乎可顯示所有數據類型的變量
//例程2:package iotest; 
 
import java.io.FileNotFoundException; 
import java.io.FileOutputStream; 
import java.io.IOException; 
import java.io.PrintStream; 
import java.util.logging.Level; 
import java.util.logging.Logger; 
 
 
public class IOtest { 
 
 public static void main(String[] args) throws IOException { 
   
  byte buf[] = new byte[255]; 
  byte bufin[] = new byte[255];    //只能用byte格式將數據送入文件 
  String str = "輸入的文字:"; 
  buf = str.getBytes(); 
  try { 
   FileOutputStream fout = new FileOutputStream("test.txt"); 
   PrintStream p = new PrintStream(fout); 
   p.println("輸入的文字~~~~~~~"+'\n');  //方式一 
    fout.write(buf, 0, buf.length); //方式二 
    fout.write(buf);     //方式三 
    //fout.flush(); 
    //fout.close(); 
    System.out.println("快輸入文字:"); 
    int bytes = System.in.read(bufin, 0, 255); 
        
    //追加文本!!!!!!!!!!!!!!!! 
    //fout = new FileOutputStream("test.txt",true); 
    fout.write(bufin, 0, bytes); 
  } catch (FileNotFoundException ex) { 
   Logger.getLogger(IOtest.class.getName()).log(Level.SEVERE, null, ex); 
  } 
   
 } 
  
}

結果:

//輸入的文字~~~~~~~ 
 
 
//輸入的文字:輸入的文字:鍩庡競宸ヤ笟 fdsfdssssssssssssssssssssssssssss

以上是“Java流操作之數據流的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

抚松县| 荔波县| 天台县| 定南县| 双城市| 崇左市| 广水市| 彝良县| 浦东新区| 高雄县| 楚雄市| 昌黎县| 绵竹市| 奎屯市| 元朗区| 安平县| 六安市| 沛县| 屯留县| 榆树市| 保亭| 调兵山市| 稷山县| 十堰市| 扶余县| 平和县| 军事| 蓬溪县| 铅山县| 通河县| 沧源| 连州市| 合肥市| 山阳县| 上高县| 石河子市| 中山市| 博湖县| 长丰县| 桑植县| 长阳|