setCreationTime()函数是java.util.zip软件包的一部分。该函数用于设置Zip Entry的创建时间。该函数将FileTime对象作为参数。 FileTime对象,它表示ZipEntry的创建时间。函数签名:
public void setCreationTime(FileTime v)
用法:
zip_entry.setCreationTime(v);
参数:该函数将FileTime对象作为参数,即文件创建的时间。
返回值:该函数不带任何参数
Exceptions:如果时间为null,该函数将引发NullPointerException
以下示例程序旨在说明setCreationTime()函数的使用
范例1:我们将创建一个名为zip_file的文件,并使用getEntry()函数获取zip文件条目,然后设置指定ZipEntry的CreationTime。“ file.zip”是f:目录中的一个zip文件。我们将以“.zip”文件作为ZipEntry
// Java program to demonstrate the
// use of setCreationTime() function
import java.util.zip.*;
import java.util.Enumeration;
import java.util.*;
import java.io.*;
import java.nio.file.attribute.*;
public class solution {
public static void main(String args[])
{
try {
// Create a Zip File
ZipFile zip_file = new ZipFile("f:\\file1.zip");
// get the Zip Entry using
// the getEntry() function
ZipEntry entry = zip_file.getEntry("file.zip");
// set the CreationTime
// using the setCreationTime()
// function
entry.setCreationTime(FileTime.fromMillis(100000));
// Get the CreationTime
// using the getCreationTime()
// function
FileTime input = entry.getCreationTime();
// Display the CreationTime
System.out.println("CreationTime:" + input.toString());
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
输出:
CreationTime:1970-01-01T00:01:40Z
范例2:我们将创建一个名为zip_file的文件,并使用getEntry()函数获取zip文件条目,然后设置指定ZipEntry的CreationTime。“ file.zip”是f:目录中的一个zip文件。我们将创建时间的值设置为null。我们将以“.cpp”文件作为ZipEntry
// Java program to demonstrate the
// use of getCreationTime() function
import java.util.zip.*;
import java.util.Enumeration;
import java.util.*;
import java.io.*;
import java.nio.file.attribute.*;
public class solution {
public static void main(String args[])
{
try {
// Create a Zip File
ZipFile zip_file = new ZipFile("f:\\file1.zip");
// get the Zip Entry using
// the getEntry() function
ZipEntry entry = zip_file.getEntry("file.zip");
// set the CreationTime
// using the setCreationTime()
// function
entry.setCreationTime(null);
// Get the CreationTime
// using the getCreationTime()
// function
FileTime input = entry.getCreationTime();
// Display the CreationTime
System.out.println("CreationTime:" + input.toString());
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
输出:
CreationTime:
由于设置了空值,因此由于错误而终止了程序
相关用法
- Java ZipEntry setLastAccessTime()用法及代码示例
- Java ZipEntry getCrc()用法及代码示例
- Java ZipEntry getCreationTime()用法及代码示例
- Java ZipEntry setLastModifiedTime()用法及代码示例
- Java ZipEntry getComment()用法及代码示例
- Java ZipEntry setCrc()用法及代码示例
- Java ZipEntry getLastModifiedTime()用法及代码示例
- 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 setCreationTime() function with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。