getEntry()函數是java.util.zip軟件包的一部分。該函數返回string參數指定的zip文件中存在的文件的ZipEntry。
函數簽名:
public ZipEntry getEntry(String name)
用法:
zip_file.getEntry();
參數:該函數帶有一個字符串參數,即文件名。
返回值:該函數返回由string參數指定的zip文件的ZipEntry。
Exceptions:如果zip文件已關閉,則該函數將引發IllegalStateException。
以下示例程序旨在說明getEntry()函數的使用
範例1:創建一個名為zip_file的文件,並使用getEntry()函數獲取zip文件條目。 “file.zip”是f:目錄中的一個zip文件。
// Java program to demonstrate the
// use of getEntry() function
import java.util.zip.*;
import java.util.Enumeration;
public class solution {
public static void main(String args[])
{
try {
// Create a Zip File
ZipFile zip_file
= new ZipFile("f:\\file.zip");
// get the Zip Entry using
// the getEntry() function
ZipEntry entry
= zip_file.getEntry("file1.cpp");
// display the Zip Entry
System.out.println("Name:"
+ entry.getName());
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
輸出:
Name:file1.cpp
範例2:創建一個名為zip_file的文件,並使用getEntry()函數獲取zip文件條目。 “file.zip”是f:目錄中的一個zip文件,而該壓縮文件中不存在“file4.cpp”。
// Java program to demonstrate the
// use of getEntry() function
import java.util.zip.*;
import java.util.Enumeration;
public class solution {
public static void main(String args[])
{
try {
// Create a Zip File
ZipFile zip_file
= new ZipFile("f:\\file.zip");
// get the Zip Entry using
// the getEntry() function
ZipEntry entry
= zip_file.getEntry("file4.cpp");
// display the Zip Entry
System.out.println("Name:"
+ entry.getName());
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
輸出:
null
參考: https://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipFile.html#getEntry(java.lang.String)
相關用法
- Java ZipFile getInputStream()用法及代碼示例
- Java ZipFile size()用法及代碼示例
- Java ZipFile entries()用法及代碼示例
- Java ZipFile getName()用法及代碼示例
- Java ZipFile getComment()用法及代碼示例
- Java KeyStore getEntry()用法及代碼示例
- Java Java.util.function.IntPredicate用法及代碼示例
- Java Java.util.function.LongPredicate用法及代碼示例
- Java Java.util.function.DoublePredicate用法及代碼示例
- Java Java.util.function.BiPredicate用法及代碼示例
- Java SQL Timestamp after()用法及代碼示例
- Java SQL Timestamp before()用法及代碼示例
- Java Function Interface用法及代碼示例
- Java ZipEntry getCompressedSize()用法及代碼示例
- Java ZipEntry setCrc()用法及代碼示例
注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 ZipFile getEntry() function in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。