A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 七道 中级黑马   /  2013-10-27 21:34  /  1697 人查看  /  5 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

可以复制,就是打开有问题。求解决
  1. package cn.io.stream;

  2. import java.io.BufferedOutputStream;
  3. import java.io.FileInputStream;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;
  6. import java.io.InputStream;

  7. public class CopyMp3Test {
  8.         public static void main(String[] args) throws IOException {
  9.        
  10.                 MyBufferedInputStream bis=new MyBufferedInputStream(new FileInputStream("3.mp3"));
  11.                 BufferedOutputStream bos=new BufferedOutputStream(new FileOutputStream("5.mp3"));
  12.                
  13.                 int by=0;
  14.                 while((by=bis.myRead())!=-1){
  15.                         bos.write(by);
  16.                 }       
  17.                 bos.close();
  18.                 bis.myClose();
  19.                
  20.         }
  21. }
  22. class MyBufferedInputStream{
  23.        
  24.         private InputStream in;
  25.         public MyBufferedInputStream(InputStream in){
  26.                 this.in=in;
  27.         }
  28.         private int pos=0;
  29.         private int count=0;
  30.         byte[] buf=new byte[1024];
  31.        
  32.         public int myRead() throws IOException{
  33.                 if(count==0){
  34.                         count=in.read(buf);
  35.                         if(count<0)
  36.                                 return -1;
  37.                         pos=0;
  38.                         byte b=buf[pos];
  39.                         count--;
  40.                         pos++;
  41.                         return b&255;
  42.                 }else if(count>0){
  43.                         byte b=buf[count];
  44.                         count--;
  45.                         pos++;
  46.                         return b&255;
  47.                 }
  48.                 return -1;
  49.         }
  50.         public void myClose() throws IOException{
  51.                 in.close();
  52.         }
  53. }
复制代码

1.jpg (35.35 KB, 下载次数: 2)

1.jpg

2.jpg (9.42 KB, 下载次数: 2)

2.jpg

评分

参与人数 1技术分 +1 收起 理由
狼王 + 1 赞一个!

查看全部评分

5 个回复

倒序浏览
用其他的软件试试,比如酷狗
回复 使用道具 举报
狼王 发表于 2013-10-27 22:39
用其他的软件试试,比如酷狗

试过了,不行
回复 使用道具 举报
本帖最后由 狼王 于 2013-10-28 08:28 编辑

问题出现在下面,你再试试,就可以来


改好后的代码在下面
回复 使用道具 举报
本帖最后由 狼王 于 2013-10-28 08:27 编辑
  1. <p>package cn.io.stream;


  2. import java.io.BufferedOutputStream;
  3. import java.io.FileInputStream;
  4. import java.io.FileOutputStream;</p><p>import java.io.IOException;
  5. import java.io.InputStream;

  6. public class CopyMp3Test {

  7.         public static void main(String[] args) throws IOException {        
  8.                 MyBufferedInputStream bis=new MyBufferedInputStream(new FileInputStream("3.mp3"));
  9.                 BufferedOutputStream bos=new BufferedOutputStream(new FileOutputStream("5.mp3"));              
  10.                 int by=0;
  11.                 while((by=bis.myRead())!=-1){
  12.                       bos.write(by);
  13.                 }        
  14.                 bos.close();
  15.                 bis.myClose();            
  16.         }
  17. }

  18. class MyBufferedInputStream{     
  19.         private InputStream in;
  20.         public MyBufferedInputStream(InputStream in){
  21.                 this.in=in;
  22.         }
  23.         private int pos=0;
  24.         private int count=0;
  25.         byte[] buf=new byte[1024];        
  26.         public int myRead() throws IOException{
  27.                  if(count==0){
  28.                         count=in.read(buf);         
  29.                         pos=0;
  30.                         byte b=buf[pos];
  31.                         count--;
  32.                         pos++;
  33.                         return b&255;
  34.                 }else if(count>0){
  35.                         byte b=buf[pos];
  36.                         count--;
  37.                         pos++;
  38.                         return b&255;
  39.                 }
  40.               return -1;
  41.         }
  42.         public void myClose() throws IOException{
  43.                 in.close();
  44.         }
  45. }
  46. </p>
复制代码
回复 使用道具 举报
狼王 发表于 2013-10-28 08:24
问题出现在下面,你再试试,就可以来

可以了,原来用错了变量,怪不得
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马