标题:对于输入输出流这块很迷茫,劳驾有谁可以帮帮我,谢谢
取消只看楼主
smile_mxw
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2007-12-30
 问题点数:0 回复次数:0 
对于输入输出流这块很迷茫,劳驾有谁可以帮帮我,谢谢
刚学习java,我只想明白一些简单的有关输入输出流的程序语句就行,有没有简单易懂的资料可以看看
这是老师写的一段代码,帮我解释一下
 try { InputStream in = new FileInputStream("c:\\z.jpg"); // 装配--有缓冲
          BufferedInputStream bin=new BufferedInputStream(in); // byte[]
          buf=new byte[bin.available];// 100kb 100*1000 bin.read(buf);
          byte[] buf=new byte[8192]; int n=0; OutputStream out=new
          FileOutputStream("e:\\d.mp3"); while((n=bin.read(buf,0,n))!=-1){
          out.write(buf,0,n); }
        

         配合输出 //OutputStream out=new FileOutputStream("e:\\d.mp3");
         out.write(buf); } catch (FileNotFoundException e) { // TODO 自动生成
                catch 块 e.printStackTrace(); } catch (IOException e) { // TODO 自动生成
         catch 块 e.printStackTrace(); }
搜索更多相关主题的帖子: 劳驾 输出 输入 
2007-12-31 00:09



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-195199-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.666535 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved