您好,登錄后才能下訂單哦!
字節數組輸出流,無需添加目的地,因為數據會被自動輸入內存的緩沖區,需通過
.toByteArray()或.toString()拿到數據
因為需要使用子類ByteArrayOutputStream的新方法,所以不能寫父類OutputStream對象
ByteArrayOutputStream os=new ByteArrayOutputStream();
因為數據寫入了緩沖區,所以需要通過.toByteArray()和.toString()手動拿取
步驟:
創建目的地字節數組(用來存放從緩沖區拿來的數據): Byte[] last=null;
選擇流: ByteArrayOutputStream os;
編碼:字符串到字節
操作:os.write(byte[],0,byte,length)寫入
獲取數據:last=os.toByteArray();
System.out.println(new String(last,0,last.length)//或last.length可替換成os.size()
解碼
public class test{
public static void main(String[]args)
{
//創建目的地
byte[] last=null;
//選擇流(新增方法)
ByteArrayOutputStream os=null; //不用OutputStream,是因為要用子類ByteArrayOutputStream的新增方法
try {
os =new ByteArrayOutputStream();
String s="hello world";
byte[] data=s.getBytes(); //編碼,字符串到字符數組
os.write(data,0,data.length);
os.flush();
//獲取數據
last=os.toByteArray();
System.out.println(last.length);
System.out.println(last.length+"---"+new String(last,0,last.length));//或者os.size()
}catch(IOException e)
{
e.printStackTrace();
}
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。