您好,登錄后才能下訂單哦!
*裝飾模式
處理流裝飾字節流輸入:
File f =new File("C:\\Users\\10853\\eclipse-workspace\\hell\\src\\hell\\abc");
InputStream is =null;
try {
**is=new BufferedInputStream(new FileInputStream(f));**
byte[] flush =new byte[1024];
int len=-1;
while((len=is.read(flush))!=-1)
{
is.read(flush,0,len);
}
}catch(FileNotFoundException e)
{
e.printStackTrace();
}catch(IOException e)
{
e.printStackTrace();
}finally {
try {
if(null!=is)
{
i**s.close();** //關閉處理流,會自動關閉字節流
}
}catch(IOException e)
{
e.printStackTrace();
}
}
處理流裝飾字節流輸出:
File f=new File("D:d/c.txt");
OutputStream os =null;
try
{
** os=new BufferedOutputStream(new FileOutputStream(f));**
String s="addaa";
byte[] datas=s.getBytes();
os.write(datas,0,datas.length);
os.flush();
}catch(FileNotFoundException e)
{
e.printStackTrace();
}catch(IOException e)
{
e.printStackTrace();
}finally {
try {
if(**null!=os**) //關閉處理流會自動關閉字節流
{
os.close();
}
}catch(IOException e)
{
e.printStackTrace();
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。