java.io.ByteArrayOutputStream.write(byte[] b, int off, int len) 方法使用指定的charsetName轉換的資料流的內容。該錯誤輸入和不可對映的字元序列由預設替換字串為平台的預設字元集替換。
以下是java.io.ByteArrayOutputStream.write(byte[] b, int off, int len) 方法的宣告:
public void write(byte[] b, int off, int len)
b -- 指定的緩衝區
off -- 在資料開始偏移位置
len -- 寫入的位元組長度
此方法不返回任何值。
NA
下面的例子顯示java.io.ByteArrayOutputStream.write(byte[] b, int off, int len)方法。
package com.yiibai; import java.io.ByteArrayOutputStream; import java.io.IOException; public class ByteArrayOutputStreamDemo { public static void main(String[] args) throws IOException { byte[] bs = {65, 66, 67, 68, 69}; ByteArrayOutputStream baos = null; try{ // create new ByteArrayOutputStream baos = new ByteArrayOutputStream(); // write byte array to the output stream baos.write(bs, 3, 2); // read all the bytes in the output stream for (byte b: baos.toByteArray()) { System.out.println(b); } }catch(Exception e){ // if I/O error occurs e.printStackTrace(); }finally{ if(baos!=null) baos.close(); } } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
68 69