下面的示例代码演示如何创建zip压缩包。
创新互联公司-专业网站定制、快速模板网站建设、高性价比西固网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式西固网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖西固地区。费用合理售后完善,十余年实体公司更值得信赖。
首先需要由需要压缩的文件创建一个InputStream对象,然后读取文件内容写入到ZipOutputStream中。
ZipOutputStream类接受FileOutputStream作为参数。创建号ZipOutputStream对象后需要创建一个zip entry,然后写入。
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
/**
*
* @author outofmemory点吸烟
*/
public class Main {
/**
* Creates a zip file
*/
public void createZipFile() {
try {
String inputFileName = "test.txt";
String zipFileName = "compressed.zip";
//Create input and output streams
FileInputStream inStream = new FileInputStream(inputFileName);
ZipOutputStream outStream = new ZipOutputStream(new FileOutputStream(zipFileName));
// Add a zip entry to the output stream
outStream.putNextEntry(new ZipEntry(inputFileName));
byte[] buffer = new byte[1024];
int bytesRead;
//Each chunk of data read from the input stream
//is written to the output stream
while ((bytesRead = inStream.read(buffer)) 0) {
outStream.write(buffer, 0, bytesRead);
}
//Close zip entry and file streams
outStream.closeEntry();
outStream.close();
inStream.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
new Main().createZipFile();
}
package+包名 可以加在最前面 例如:package a.b.c;表示打包在a文件夹下的b文件夹里的c文件夹
那要看你用的什么工具了,创建一个包并不用语句创建,而是类似于建立一个文件夹。在你的工程根目录下创建一个名为MyPackage的文件夹,然后在程序里第一行写上 package MyPackage;就可以了。如果你用的是eclpse,选定你要加包的项目,点击菜单栏file-new-package 再输入包名,确定就可以了 。