您好,登錄后才能下訂單哦!
創建源:字節數組 不要太大
選擇流: InputStream is =new ByteArrayInputStream(byte[] byte);
操作(輸入)
無釋放資源(使用.close()會是一個空方法,為了保證風格統一)
源頭由文件(硬盤)換成字節數組:
因為字符數組是內存而不是文件(硬盤),所以java虛擬機可直接調用,由垃圾回收機制
(gc)來釋放,所以無需手動.close()釋放
public class test{
public static void main(String[]args)
{
//創建源
byte[] src="ad ad and".getBytes();
//選擇流
InputStream is=null;
try {
is=new ByteArrayInputStream(src);
byte[] flush=new byte[5]; //緩沖字符器
int len=-1;
while((len=is.read(flush))!=-1)
{
String s=new String(flush,0,len); //解碼,有字節到字符串
System.out.println(s);
}
}catch(IOException e)
{
e.printStackTrace();
}
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。