วิธีคลายซิปไฟล์โดยใช้โปรแกรมใน Android


133

ฉันต้องการข้อมูลโค้ดขนาดเล็กที่คลายซิปไฟล์สองสามไฟล์จากไฟล์. zip ที่กำหนดและให้ไฟล์แยกตามรูปแบบที่อยู่ในไฟล์ซิป กรุณาโพสต์ความรู้ของคุณและช่วยฉันออก


1
คุณสามารถรับโซลูชัน Kotlin ได้ที่นี่ - stackoverflow.com/a/50990992/1162784
arsent

คำตอบ:


141

มีเวอร์ชันของ peno ที่ปรับให้เหมาะสมแล้วเล็กน้อย การเพิ่มขึ้นของประสิทธิภาพเป็นที่เข้าใจได้

private boolean unpackZip(String path, String zipname)
{       
     InputStream is;
     ZipInputStream zis;
     try 
     {
         String filename;
         is = new FileInputStream(path + zipname);
         zis = new ZipInputStream(new BufferedInputStream(is));          
         ZipEntry ze;
         byte[] buffer = new byte[1024];
         int count;

         while ((ze = zis.getNextEntry()) != null) 
         {
             filename = ze.getName();

             // Need to create directories if not exists, or
             // it will generate an Exception...
             if (ze.isDirectory()) {
                File fmd = new File(path + filename);
                fmd.mkdirs();
                continue;
             }

             FileOutputStream fout = new FileOutputStream(path + filename);

             while ((count = zis.read(buffer)) != -1) 
             {
                 fout.write(buffer, 0, count);             
             }

             fout.close();               
             zis.closeEntry();
         }

         zis.close();
     } 
     catch(IOException e)
     {
         e.printStackTrace();
         return false;
     }

    return true;
}

12
<use-permission android: name = "android.permission.WRITE_EXTERNAL_STORAGE" />
Lou Morda

1
ฉันคิดว่าใช่มันได้ผลเพราะมันเป็นวิธีการแกะกล่องตามปกติ เพียงแค่จัดการเพื่อให้ได้ 'path' และ 'zipname' ที่ถูกต้อง ฉันเคยเห็นบางสิ่งที่คุณอาจสนใจ (แน่ใจว่าคุณเคยเห็นมาแล้ว): link
Vasily Sochinsky

1
เนื่องจากคุณต้องข้ามการดำเนินการ "เฉพาะไฟล์" หากคุณzeเป็นไดเร็กทอรี การพยายามดำเนินการเหล่านี้จะทำให้เกิดข้อยกเว้น
Vasily Sochinsky

1
คำตอบนี้ไม่ควรได้ผลเพราะมันไม่ได้สร้างไฟล์ที่หายไปเพื่อเขียนข้อมูลนั่นเอง !!
Omar HossamEldin

1
อันที่จริงรหัสนี้จะใช้ไม่ได้หากสร้างไฟล์ zip โดยไม่มีเส้นทางขยะเช่นคุณสามารถเรียกใช้รหัสนี้เพื่อคลายซิปไฟล์ APK คุณจะได้รับ FileNotFoundException
Shaw

103

จากคำตอบของ Vasily Sochinsky ได้รับการปรับแต่งเล็กน้อยและด้วยการแก้ไขเล็กน้อย:

public static void unzip(File zipFile, File targetDirectory) throws IOException {
    ZipInputStream zis = new ZipInputStream(
            new BufferedInputStream(new FileInputStream(zipFile)));
    try {
        ZipEntry ze;
        int count;
        byte[] buffer = new byte[8192];
        while ((ze = zis.getNextEntry()) != null) {
            File file = new File(targetDirectory, ze.getName());
            File dir = ze.isDirectory() ? file : file.getParentFile();
            if (!dir.isDirectory() && !dir.mkdirs())
                throw new FileNotFoundException("Failed to ensure directory: " +
                        dir.getAbsolutePath());
            if (ze.isDirectory())
                continue;
            FileOutputStream fout = new FileOutputStream(file);
            try {
                while ((count = zis.read(buffer)) != -1)
                    fout.write(buffer, 0, count);
            } finally {
                fout.close();
            }
            /* if time should be restored as well
            long time = ze.getTime();
            if (time > 0)
                file.setLastModified(time);
            */
        }
    } finally {
        zis.close();
    }
}

ความแตกต่างที่โดดเด่น

  • public static - นี่เป็นวิธียูทิลิตี้แบบคงที่ที่สามารถทำได้ทุกที่
  • 2 Fileพารามิเตอร์เนื่องจากStringare: / สำหรับไฟล์และไม่สามารถระบุตำแหน่งที่จะแตกไฟล์ zip มาก่อนได้ การpath + filenameเชื่อมต่อด้วย> https://stackoverflow.com/a/412495/995891
  • throws- เพราะจับช้า - เพิ่มลองจับถ้าไม่สนใจพวกเขาจริงๆ
  • ทำให้แน่ใจว่าไดเร็กทอรีที่ต้องการมีอยู่ในทุกกรณี ไม่ใช่ทุก zip ที่มีรายการไดเร็กทอรีที่จำเป็นทั้งหมดก่อนรายการไฟล์ สิ่งนี้มีข้อบกพร่อง 2 ประการ:
    • หาก zip มีไดเร็กทอรีว่างและแทนที่จะเป็นไดเร็กทอรีผลลัพธ์มีไฟล์ที่มีอยู่สิ่งนี้จะถูกละเว้น ค่าตอบแทนของmkdirs()เป็นสิ่งสำคัญ
    • อาจเกิดข้อผิดพลาดกับไฟล์ zip ที่ไม่มีไดเรกทอรี
  • ขนาดบัฟเฟอร์การเขียนที่เพิ่มขึ้นควรปรับปรุงประสิทธิภาพเล็กน้อย โดยปกติพื้นที่จัดเก็บจะอยู่ในบล็อก 4k และการเขียนเป็นชิ้นเล็ก ๆ มักจะช้ากว่าที่จำเป็น
  • ใช้เวทมนตร์ในfinallyการป้องกันการรั่วไหลของทรัพยากร

ดังนั้น

unzip(new File("/sdcard/pictures.zip"), new File("/sdcard"));

ควรทำเทียบเท่ากับต้นฉบับ

unpackZip("/sdcard/", "pictures.zip")

สวัสดีฉันได้รับเส้นทางด้วยเครื่องหมายทับย้อนกลับเช่น sdcard / temp / 768 \ 769.json ดังนั้นฉันจึงได้รับข้อผิดพลาดคุณสามารถบอกวิธีจัดการได้ไหม
Ando Masahashi

@AndoMasahashi ที่ควรเป็นชื่อไฟล์ทางกฎหมายบนระบบไฟล์ linux คุณได้รับข้อผิดพลาดอะไรและชื่อไฟล์ควรมีลักษณะอย่างไรในตอนท้าย
zapl

ดูเหมือนว่า /sdcard/pictures\picturess.jpeg และไฟล์ข้อผิดพลาดไม่พบข้อผิดพลาด
Ando Masahashi

มันทำงานได้ดี UTF8 formatแต่มันจะพ่นยกเว้นเมื่อหนึ่งของชื่อไฟล์ภายในซิปไม่ได้อยู่ใน ดังนั้นฉันจึงใช้รหัสนี้แทนซึ่งใช้commons-compresslib ของ apache
Ashish Tanna

@AshishTanna แน่นอนมันเป็นปัญหาที่รู้จักกันblogs.oracle.com/xuemingshen/entry/non_utf_8_encoding_in
zapl

26

นี่คือวิธีคลายซิปของฉันซึ่งฉันใช้:

private boolean unpackZip(String path, String zipname)
{       
     InputStream is;
     ZipInputStream zis;
     try 
     {
         is = new FileInputStream(path + zipname);
         zis = new ZipInputStream(new BufferedInputStream(is));          
         ZipEntry ze;

         while((ze = zis.getNextEntry()) != null) 
         {
             ByteArrayOutputStream baos = new ByteArrayOutputStream();
             byte[] buffer = new byte[1024];
             int count;

             String filename = ze.getName();
             FileOutputStream fout = new FileOutputStream(path + filename);

             // reading and writing
             while((count = zis.read(buffer)) != -1) 
             {
                 baos.write(buffer, 0, count);
                 byte[] bytes = baos.toByteArray();
                 fout.write(bytes);             
                 baos.reset();
             }

             fout.close();               
             zis.closeEntry();
         }

         zis.close();
     } 
     catch(IOException e)
     {
         e.printStackTrace();
         return false;
     }

    return true;
}

คุณคิดว่ารหัสเดียวกันนี้ใช้ได้กับการคลายซิปหรือคลายไฟล์ obb ไฟล์ APK Expansion Files หรือไม่?
LOG_TAG

13

Android มี Java API ในตัว ตรวจสอบแพ็คเกจjava.util.zip

คลาสZipInputStreamคือสิ่งที่คุณควรพิจารณา อ่าน ZipEntry จาก ZipInputStream และถ่ายโอนข้อมูลลงในระบบไฟล์ / โฟลเดอร์ ตรวจสอบตัวอย่างที่คล้ายกันเพื่อบีบอัดเป็นไฟล์zip


7
คุณควรมีตัวอย่างโค้ด คุณพลาดคะแนนไปมาก
Cameron Lowell Palmer

11

ทาง Kotlin

//FileExt.kt

data class ZipIO (val entry: ZipEntry, val output: File)

fun File.unzip(unzipLocationRoot: File? = null) {

    val rootFolder = unzipLocationRoot ?: File(parentFile.absolutePath + File.separator + nameWithoutExtension)
    if (!rootFolder.exists()) {
       rootFolder.mkdirs()
    }

    ZipFile(this).use { zip ->
        zip
        .entries()
        .asSequence()
        .map {
            val outputFile = File(rootFolder.absolutePath + File.separator + it.name)
            ZipIO(it, outputFile)
        }
        .map {
            it.output.parentFile?.run{
                if (!exists()) mkdirs()
            }
            it
        }
        .filter { !it.entry.isDirectory }
        .forEach { (entry, output) ->
            zip.getInputStream(entry).use { input ->
                output.outputStream().use { output ->
                    input.copyTo(output)
                }
            }
        }
    }

}

การใช้งาน

val zipFile = File("path_to_your_zip_file")
file.unzip()

7

แม้ว่าคำตอบที่มีอยู่แล้วจะได้ผลดี แต่ฉันพบว่ามันช้ากว่าที่ฉันคาดหวังไว้เล็กน้อย ฉันใช้zip4j แทนซึ่งฉันคิดว่าเป็นทางออกที่ดีที่สุดเนื่องจากความเร็วของมัน นอกจากนี้ยังอนุญาตให้มีตัวเลือกต่างๆสำหรับปริมาณการบีบอัดซึ่งฉันพบว่ามีประโยชน์


6

ใช้คลาสต่อไปนี้

    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipInputStream;
    import android.util.Log;

    public class DecompressFast {



 private String _zipFile; 
  private String _location; 
 
  public DecompressFast(String zipFile, String location) { 
    _zipFile = zipFile; 
    _location = location; 
 
    _dirChecker(""); 
  } 
 
  public void unzip() { 
    try  { 
      FileInputStream fin = new FileInputStream(_zipFile); 
      ZipInputStream zin = new ZipInputStream(fin); 
      ZipEntry ze = null; 
      while ((ze = zin.getNextEntry()) != null) { 
        Log.v("Decompress", "Unzipping " + ze.getName()); 
 
        if(ze.isDirectory()) { 
          _dirChecker(ze.getName()); 
        } else { 
          FileOutputStream fout = new FileOutputStream(_location + ze.getName()); 
         BufferedOutputStream bufout = new BufferedOutputStream(fout);
          byte[] buffer = new byte[1024];
          int read = 0;
          while ((read = zin.read(buffer)) != -1) {
              bufout.write(buffer, 0, read);
          }

          
          
          
          bufout.close();
          
          zin.closeEntry(); 
          fout.close(); 
        } 
         
      } 
      zin.close(); 
      
      
      Log.d("Unzip", "Unzipping complete. path :  " +_location );
    } catch(Exception e) { 
      Log.e("Decompress", "unzip", e); 
      
      Log.d("Unzip", "Unzipping failed");
    } 
 
  } 
 
  private void _dirChecker(String dir) { 
    File f = new File(_location + dir); 
 
    if(!f.isDirectory()) { 
      f.mkdirs(); 
    } 
  } 


 }

วิธีใช้

 String zipFile = Environment.getExternalStorageDirectory() + "/the_raven.zip"; //your zip file location
    String unzipLocation = Environment.getExternalStorageDirectory() + "/unzippedtestNew/"; // destination folder location
  DecompressFast df= new DecompressFast(zipFile, unzipLocation);
    df.unzip();

สิทธิ์

 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

สามารถดูชื่อไฟล์ได้ แต่เมื่อพยายามขยายไฟล์ฉันได้รับข้อผิดพลาด FileNotFoundException
Parth Anjaria

5

ตามคำตอบของ @zapl เปิดเครื่องรูดพร้อมรายงานความคืบหน้า:

public interface UnzipFile_Progress
{
    void Progress(int percent, String FileName);
}

// unzip(new File("/sdcard/pictures.zip"), new File("/sdcard"));
public static void UnzipFile(File zipFile, File targetDirectory, UnzipFile_Progress progress) throws IOException,
        FileNotFoundException
{
    long total_len = zipFile.length();
    long total_installed_len = 0;

    ZipInputStream zis = new ZipInputStream(new BufferedInputStream(new FileInputStream(zipFile)));
    try
    {
        ZipEntry ze;
        int count;
        byte[] buffer = new byte[1024];
        while ((ze = zis.getNextEntry()) != null)
        {
            if (progress != null)
            {
                total_installed_len += ze.getCompressedSize();
                String file_name = ze.getName();
                int percent = (int)(total_installed_len * 100 / total_len);
                progress.Progress(percent, file_name);
            }

            File file = new File(targetDirectory, ze.getName());
            File dir = ze.isDirectory() ? file : file.getParentFile();
            if (!dir.isDirectory() && !dir.mkdirs())
                throw new FileNotFoundException("Failed to ensure directory: " + dir.getAbsolutePath());
            if (ze.isDirectory())
                continue;
            FileOutputStream fout = new FileOutputStream(file);
            try
            {
                while ((count = zis.read(buffer)) != -1)
                    fout.write(buffer, 0, count);
            } finally
            {
                fout.close();
            }

            // if time should be restored as well
            long time = ze.getTime();
            if (time > 0)
                file.setLastModified(time);
        }
    } finally
    {
        zis.close();
    }
}

3
public class MainActivity extends Activity {

private String LOG_TAG = MainActivity.class.getSimpleName();

private File zipFile;
private File destination;

private TextView status;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    status = (TextView) findViewById(R.id.main_status);
    status.setGravity(Gravity.CENTER);

    if ( initialize() ) {
        zipFile = new File(destination, "BlueBoxnew.zip");
        try {
            Unzipper.unzip(zipFile, destination);
            status.setText("Extracted to \n"+destination.getAbsolutePath());
        } catch (ZipException e) {
            Log.e(LOG_TAG, e.getMessage());
        } catch (IOException e) {
            Log.e(LOG_TAG, e.getMessage());
        }
    } else {
        status.setText("Unable to initialize sd card.");
    }
}

public boolean initialize() {
    boolean result = false;
     File sdCard = new File(Environment.getExternalStorageDirectory()+"/zip/");
    //File sdCard = Environment.getExternalStorageDirectory();
    if ( sdCard != null ) {
        destination = sdCard;
        if ( !destination.exists() ) {
            if ( destination.mkdir() ) {
                result = true;
            }
        } else {
            result = true;
        }
    }

    return result;
}

 }

-> คลาสตัวช่วย (Unzipper.java)

    import java.io.File;
    import java.io.FileInputStream;
   import java.io.FileOutputStream;
    import java.io.IOException;
       import java.util.zip.ZipEntry;
    import java.util.zip.ZipException;
    import java.util.zip.ZipInputStream;
     import android.util.Log;

   public class Unzipper {

private static String LOG_TAG = Unzipper.class.getSimpleName();

public static void unzip(final File file, final File destination) throws ZipException, IOException {
    new Thread() {
        public void run() {
            long START_TIME = System.currentTimeMillis();
            long FINISH_TIME = 0;
            long ELAPSED_TIME = 0;
            try {
                ZipInputStream zin = new ZipInputStream(new FileInputStream(file));
                String workingDir = destination.getAbsolutePath()+"/";

                byte buffer[] = new byte[4096];
                int bytesRead;
                ZipEntry entry = null;
                while ((entry = zin.getNextEntry()) != null) {
                    if (entry.isDirectory()) {
                        File dir = new File(workingDir, entry.getName());
                        if (!dir.exists()) {
                            dir.mkdir();
                        }
                        Log.i(LOG_TAG, "[DIR] "+entry.getName());
                    } else {
                        FileOutputStream fos = new FileOutputStream(workingDir + entry.getName());
                        while ((bytesRead = zin.read(buffer)) != -1) {
                            fos.write(buffer, 0, bytesRead);
                        }
                        fos.close();
                        Log.i(LOG_TAG, "[FILE] "+entry.getName());
                    }
                }
                zin.close();

                FINISH_TIME = System.currentTimeMillis();
                ELAPSED_TIME = FINISH_TIME - START_TIME;
                Log.i(LOG_TAG, "COMPLETED in "+(ELAPSED_TIME/1000)+" seconds.");
            } catch (Exception e) {
                Log.e(LOG_TAG, "FAILED");
            }
        };
    }.start();
}

   }

-> เค้าโครง xml (activity_main.xml):

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context=".MainActivity" >

<TextView
    android:id="@+id/main_status"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world" />

</RelativeLayout>

-> การอนุญาตในไฟล์ Menifest:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

2

นี่คือ ZipFileIterator (เช่น java Iterator แต่สำหรับไฟล์ zip):

package ch.epfl.bbp.io;

import java.io.BufferedInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Iterator;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;

public class ZipFileIterator implements Iterator<File> {

    private byte[] buffer = new byte[1024];

    private FileInputStream is;
    private ZipInputStream zis;
    private ZipEntry ze;

    public ZipFileIterator(File file) throws FileNotFoundException {
    is = new FileInputStream(file);
    zis = new ZipInputStream(new BufferedInputStream(is));
    }

    @Override
    public boolean hasNext() {
    try {
        return (ze = zis.getNextEntry()) != null;
    } catch (IOException e) {
        e.printStackTrace();
    }
    return false;
    }

    @Override
    public File next() {
    try {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        int count;

        String filename = ze.getName();
        File tmpFile = File.createTempFile(filename, "tmp");
        tmpFile.deleteOnExit();// TODO make it configurable
        FileOutputStream fout = new FileOutputStream(tmpFile);

        while ((count = zis.read(buffer)) != -1) {
        baos.write(buffer, 0, count);
        byte[] bytes = baos.toByteArray();
        fout.write(bytes);
        baos.reset();
        }
        fout.close();
        zis.closeEntry();

        return tmpFile;

    } catch (Exception e) {
        throw new RuntimeException(e);
    }
    }

    @Override
    public void remove() {
    throw new RuntimeException("not implemented");
    }

    public void close() {
    try {
        zis.close();
        is.close();
    } catch (IOException e) {// nope
    }
    }
}

คุณคิดว่ารหัสเดียวกันนี้ใช้ได้กับการคลายซิปหรือคลายไฟล์ obb ไฟล์ APK Expansion Files หรือไม่?
LOG_TAG

2

ตัวอย่างน้อยที่สุดที่ฉันใช้ในการแตกไฟล์เฉพาะจาก zipfile ลงในโฟลเดอร์แคชของแอปพลิเคชัน จากนั้นฉันอ่านไฟล์รายการโดยใช้วิธีการอื่น

private void unzipUpdateToCache() {
    ZipInputStream zipIs = new ZipInputStream(context.getResources().openRawResource(R.raw.update));
    ZipEntry ze = null;

    try {

        while ((ze = zipIs.getNextEntry()) != null) {
            if (ze.getName().equals("update/manifest.json")) {
                FileOutputStream fout = new FileOutputStream(context.getCacheDir().getAbsolutePath() + "/manifest.json");

                byte[] buffer = new byte[1024];
                int length = 0;

                while ((length = zipIs.read(buffer))>0) {
                    fout.write(buffer, 0, length);
                }
                zipIs .closeEntry();
                fout.close();
            }
        }
        zipIs .close();

    } catch (IOException e) {
        e.printStackTrace();
    }

}

2

ฉันกำลังทำงานกับไฟล์ zip ซึ่งคลาส ZipFile ของ Java ไม่สามารถจัดการได้ เห็นได้ชัดว่า Java 8 ไม่สามารถจัดการกับวิธีการบีบอัด 12 ได้ (ฉันเชื่อว่า bzip2) หลังจากที่พยายามหลายวิธีรวมทั้ง zip4j (ซึ่งยังล้มเหลวกับไฟล์เหล่านี้โดยเฉพาะเนื่องจากปัญหาอีก) ผมประสบความสำเร็จกับของ Apache คอมมอนบีบอัดที่สนับสนุนวิธีการบีบอัดเพิ่มเติมตามที่กล่าวถึงที่นี่

โปรดทราบว่าคลาส ZipFile ด้านล่างไม่ใช่คลาสจาก java.util.zip

จริงๆแล้วคือorg.apache.commons.compress.archivers.zip.ZipFileดังนั้นโปรดระวังการนำเข้า

try (ZipFile zipFile = new ZipFile(archiveFile)) {
    Enumeration<ZipArchiveEntry> entries = zipFile.getEntries();
    while (entries.hasMoreElements()) {
        ZipArchiveEntry entry = entries.nextElement();
        File entryDestination = new File(destination, entry.getName());
        if (entry.isDirectory()) {
            entryDestination.mkdirs();
        } else {
            entryDestination.getParentFile().mkdirs();
            try (InputStream in = zipFile.getInputStream(entry); OutputStream out = new FileOutputStream(entryDestination)) {
                IOUtils.copy(in, out);
            }
        }
    }
} catch (IOException ex) {
    log.debug("Error unzipping archive file: " + archiveFile, ex);
}

สำหรับ Gradle:

compile 'org.apache.commons:commons-compress:1.18'

2

ตามคำตอบของ zapl การเพิ่มtry()รอบ ๆCloseableจะปิดสตรีมโดยอัตโนมัติหลังการใช้งาน

public static void unzip(File zipFile, File targetDirectory) {
    try (FileInputStream fis = new FileInputStream(zipFile)) {
        try (BufferedInputStream bis = new BufferedInputStream(fis)) {
            try (ZipInputStream zis = new ZipInputStream(bis)) {
                ZipEntry ze;
                int count;
                byte[] buffer = new byte[Constant.DefaultBufferSize];
                while ((ze = zis.getNextEntry()) != null) {
                    File file = new File(targetDirectory, ze.getName());
                    File dir = ze.isDirectory() ? file : file.getParentFile();
                    if (!dir.isDirectory() && !dir.mkdirs())
                        throw new FileNotFoundException("Failed to ensure directory: " + dir.getAbsolutePath());
                    if (ze.isDirectory())
                        continue;
                    try (FileOutputStream fout = new FileOutputStream(file)) {
                        while ((count = zis.read(buffer)) != -1)
                            fout.write(buffer, 0, count);
                    }
                }
            }
        }
    } catch (Exception ex) {
        //handle exception
    }
}

การใช้Constant.DefaultBufferSize( 65536) รับจากC# .NET 4 Stream.CopyToจากคำตอบของ Jon Skeet ที่นี่: https://stackoverflow.com/a/411605/1876355

ฉันมักจะเห็นโพสต์ที่ใช้byte[1024]หรือbyte[4096]บัฟเฟอร์เสมอไม่เคยรู้เลยว่ามันจะใหญ่กว่านี้มากซึ่งช่วยเพิ่มประสิทธิภาพและยังทำงานได้ตามปกติ

นี่คือStreamซอร์สโค้ด: https://referencesource.microsoft.com/#mscorlib/system/io/stream.cs

//We pick a value that is the largest multiple of 4096 that is still smaller than the large object heap threshold (85K).
// The CopyTo/CopyToAsync buffer is short-lived and is likely to be collected at Gen0, and it offers a significant
// improvement in Copy performance.

private const int _DefaultCopyBufferSize = 81920;

อย่างไรก็ตามฉันโทรกลับไป65536ซึ่งก็เป็นหลาย ๆ4096อย่างเพื่อความปลอดภัย


1
นี่เป็นทางออกที่ดีที่สุดในหัวข้อนี้ นอกจากนี้ฉันจะใช้ BufferedOutputStream ร่วมกับ FileOutputStream
MarkoR

1

ไฟล์ Zip ที่ป้องกันด้วยรหัสผ่าน

หากคุณต้องการบีบอัดไฟล์ด้วยรหัสผ่านคุณสามารถดูที่ไลบรารีนี้ที่สามารถซิปไฟล์ด้วยรหัสผ่านได้อย่างง่ายดาย:

ซิป:

ZipArchive zipArchive = new ZipArchive();
zipArchive.zip(targetPath,destinationPath,password);

เปิดเครื่องรูด:

ZipArchive zipArchive = new ZipArchive();
zipArchive.unzip(targetPath,destinationPath,password);

แรร์:

RarArchive rarArchive = new RarArchive();
rarArchive.extractArchive(file archive, file destination);

เอกสารของไลบรารีนี้ดีพอฉันเพิ่งเพิ่มตัวอย่างบางส่วนจากที่นั่น ฟรีและเขียนขึ้นเป็นพิเศษสำหรับ Android

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.