setCrc()函數是java.util.zip軟件包的一部分。該函數用於設置指定的郵政編碼條目的CRC值。 CRC是用於檢測原始數據中的錯誤的錯誤檢測代碼。函數簽名:
public void setCrc(long val)
用法:
zip_entry.setCrc(val);
參數:該函數取一個long值,代表CRC值
返回值:該函數不返回任何值。
Exceptions:如果指定的CRC-32值小於0或大於0xFFFFFFFF,則該函數引發IllegalArgumentException
以下示例程序旨在說明setCrc()函數的使用
範例1:我們將創建一個名為zip_file的文件,並使用setEntry()函數獲取zip文件條目,然後設置指定ZipEntry的CRC-32。“ file.zip”是f:目錄中的一個zip文件。我們將“.zip”文件作為ZipEntry
// Java program to demonstrate the
// use of setCrc() function
import java.util.zip.*;
import java.util.Enumeration;
import java.util.*;
import java.io.*;
public class solution {
public static void main(String args[])
{
try {
// Create a Zip File
ZipFile zip_file = new ZipFile("f:\\file1.zip");
// set the Zip Entry using
// the setEntry() function
ZipEntry entry = zip_file.getEntry("file.zip");
// set the Crc
// using the setCrc()
// function
entry.setCrc(190);
// get the Crc
// using the getCrc()
// function
long input = entry.getCrc();
// Display the Crc
System.out.println("Crc:" + input);
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
輸出:
Crc:190
範例2:我們將創建一個名為zip_file的文件,並使用getEntry()函數獲取zip文件條目,然後設置指定ZipEntry的CRC-32。“ file.zip”是f:目錄中的一個zip文件。我們將CRC的值設置為-1。我們將“.cpp”文件作為ZipEntry
// Java program to demonstrate the
// use of setCrc() function
import java.util.zip.*;
import java.util.Enumeration;
import java.util.*;
import java.io.*;
public class solution {
public static void main(String args[])
{
try {
// Create a Zip File
ZipFile zip_file = new ZipFile("f:\\file1.zip");
// set the Zip Entry using
// the setEntry() function
ZipEntry entry = zip_file.getEntry("file1.cpp");
// set the Crc
// using the setCrc()
// function
entry.setCrc(-1);
// get the Crc
// using the getCrc()
// function
long input = entry.getCrc();
// Display the Crc
System.out.println("Crc:" + input);
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
輸出:
invalid entry crc-32
函數拋出錯誤
參考:https://docs.oracle.com/javase/8/docs/api/java/util/zip/ZipEntry.html#setCrc-long-
相關用法
- Java ZipEntry setLastAccessTime()用法及代碼示例
- Java ZipEntry getCrc()用法及代碼示例
- Java ZipEntry getCreationTime()用法及代碼示例
- Java ZipEntry setLastModifiedTime()用法及代碼示例
- Java ZipEntry getComment()用法及代碼示例
- Java ZipEntry getLastModifiedTime()用法及代碼示例
- Java ZipEntry setCreationTime()用法及代碼示例
- Java ZipEntry setComment()用法及代碼示例
- Java ZipEntry getCompressedSize()用法及代碼示例
- Java ZipEntry getLastAccessTime()用法及代碼示例
- Java ZipEntry getName()用法及代碼示例
- Java ZipEntry setCompressedSize()用法及代碼示例
- Java ZipEntry getMethod()用法及代碼示例
- Java ZipEntry getSize()用法及代碼示例
- Java ZipEntry getTime()用法及代碼示例
注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 Java ZipEntry setCrc() function with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。