提问者:小点点

把数据从一个文件复制到另一个文件在Android很慢?


我正在将数据从一个文件复制到另一个文件。

这需要更多的时间。原因是什么?

我的代码在这里

    public void copyData( InputStream in, OutputStream out ) throws IOException
    {
        try
        {
            in = new CipherInputStream( in, dcipher );
            int numRead = 0;
            byte[] buf = new byte[512];
            while ( ( numRead = in.read( buf ) ) >= 0 )
            {
                out.write( buf, 0, numRead );
            }
            out.close();
            in.close();
        }
        catch ( java.io.IOException e )
        {
        }
    }

null


共1个答案

匿名用户

请检查代码,我所做的是增加缓冲区大小和刷新数据,只要它触及1 MB,这样你就不会遇到内存不足的错误。

原因主要是由于缓冲区太小,在写入小字节的信息时需要时间。最好一次放一大块。

您可以根据需要修改这些值。

public void copyData( InputStream in, OutputStream out ) throws IOException
{
    try
    {
        int numRead = 0;
        byte[] buf = new byte[102400];
        long total = 0;
        while ( ( numRead = in.read( buf ) ) >= 0 )
        {
            total += numRead;
            out.write( buf, 0, numRead );

            //flush after 1MB, so as heap memory doesn't fall short
            if (total > 1024 * 1024) 
             { 
                total = 0;
                out.flush();
             }
        }
        out.close();
        in.close();
    }
    catch ( java.io.IOException e )
    {
    }
}