黑马程序员技术交流社区

标题: 复制的文件容量大小为什么跟原来的不一样 [打印本页]

作者: 唐玄玄    时间: 2016-3-12 14:39
标题: 复制的文件容量大小为什么跟原来的不一样
package mybuffer1;
import java.io.*;
public class MyBuffer
{
        private InputStream r;
        private int count=0,pos=0;
        byte[] buf=new byte[1024];
        MyBuffer(InputStream r)
        {
                this.r=r;
        }
        public int MyRead() throws IOException
        {
               

                if(count==0)
                {
                        if(count<0)
                                return -1;               
                        count=r.read(buf);
                        pos=0;
                        byte bt=buf[pos];
                        pos++;
                        count--;
                        return bt&255;
                }
                else if(count>0)
                {
                        byte bt = buf[pos];
                        pos++;
                        count--;
                        return bt & 0xff;
                }
                return -1;
        }
        public void MyClose()throws IOException
        {
                r.close();
        }

}
package mybuffer1;
import java.io.*;
public class MyBufferDemo {

        public static void main(String[] args) throws IOException
        {
                // TODO Auto-generated method stub
                long start=System.currentTimeMillis();
                Copy();
                long end=System.currentTimeMillis();
                System.out.println("time="+(end-start));
               
        }
        public static void Copy() throws IOException
        {
                MyBuffer mf=new MyBuffer(new FileInputStream("e:\\bbb.mp3"));
                BufferedOutputStream fos=new BufferedOutputStream(new FileOutputStream("e:\\bb.mp3"));
                int ch=0;
                while((ch=mf.MyRead())!=-1)
                     fos.write(ch);
                mf.MyClose();
                fos.close();
        }

}
作者: 小笨笨SHP    时间: 2016-3-12 15:27
因为在转换过程中有可能查码表的时候会遇到查不到对应码表的字符,就会造成一些数据丢失
作者: 唐玄玄    时间: 2016-3-12 16:14
小笨笨SHP 发表于 2016-3-12 15:27
因为在转换过程中有可能查码表的时候会遇到查不到对应码表的字符,就会造成一些数据丢失 ...

哦哦,谢谢流




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