黑马程序员技术交流社区

标题: io的一些问题 [打印本页]

作者: 七道    时间: 2013-10-27 21:34
标题: io的一些问题
可以复制,就是打开有问题。求解决
  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

作者: 狼王    时间: 2013-10-27 22:39
用其他的软件试试,比如酷狗
作者: 七道    时间: 2013-10-27 22:46
狼王 发表于 2013-10-27 22:39
用其他的软件试试,比如酷狗

试过了,不行
作者: 狼王    时间: 2013-10-28 08:24
本帖最后由 狼王 于 2013-10-28 08:28 编辑

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


改好后的代码在下面
作者: 狼王    时间: 2013-10-28 08:26
本帖最后由 狼王 于 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 10:48
狼王 发表于 2013-10-28 08:24
问题出现在下面,你再试试,就可以来

可以了,原来用错了变量,怪不得




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2