java.io.OutputStream.write(byte[] b)方法實例
java.io.OutputStream.write(byte[] b) 方法寫入b.length個字節從指定的字節數組輸出流。一般write(b) 有相同的效果,由於調用write(b, 0, b.length)
聲明
以下是java.io.OutputStream.write()方法的聲明
public void write(byte[] b)
參數
-
b -- the data.
返回值
此方法無返回值。
異常
-
IOException -- 如果發生I/ O錯誤。
例子
下麵的示例演示java.io.OutputStream.write()方法的用法。
package com.yiibai; import java.io.*; public class OutputStreamDemo { public static void main(String[] args) { byte[] b = {'h', 'e', 'l', 'l', 'o'}; try { // create a new output stream OutputStream os = new FileOutputStream("test.txt"); // craete a new input stream InputStream is = new FileInputStream("test.txt"); // write something os.write(b); // read what we wrote for (int i = 0; i < b.length; i++) { System.out.print("" + (char) is.read()); } } catch (Exception ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
hello