|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
再说第三点:我并没有提到服务器也要整合,然后是IDE,一个好的IDE能够200%提高开发的速度,就说图形方面:你是经过简单托拽和点击就能实现功能好那。js|紧缩zip办法zipPath参数为保留zip的文件路径srcPath参数为必要紧缩的目次在linuxwindow下面测试无成绩!次要是编码成绩对照贫苦~如果有其他非常请留言大概有甚么更好的办法接待给更多的定见
//zipzhefolder
voidzip(StringzipPath,StringsrcPath,javax.servlet.jsp.JspWriterout)throwsException{
FileOutputStreamoutput=null;
ZipOutputStreamzipOutput=null;
try{
output=newFileOutputStream(zipPath);
zipOutput=newZipOutputStream(output);
zipEntry(zipOutput,srcPath,srcPath,zipPath);
}catch(Exceptione){
out.print("fileziperror");
}finally{
if(zipOutput!=null)zipOutput.close();
}
out.print("zipok"+zipPath);
}
//addthezipentry
voidzipEntry(ZipOutputStreamzipOs,StringinitPath,StringfilePath,StringzipPath)throwsException{
StringentryName=filePath;
Filef=newFile(filePath);
if(f.isDirectory()){//??
String[]files=f.list();
for(inti=0;i<files.length;i++)
zipEntry(zipOs,initPath,filePath+File.separator+files[i],zipPath);
return;
}
StringchPh=initPath.substring(initPath.lastIndexOf("/")+1);//?????
intidx=initPath.lastIndexOf(chPh);
if(idx!=-1){
entryName=filePath.substring(idx);
}
ZipEntryentry;
entry=newZipEntry(entryName);
Fileff=newFile(filePath);
if(ff.getAbsolutePath().equals(zipPath))return;
entry.setSize(ff.length());
entry.setTime(ff.lastModified());
//theCRCefficacy
entry.setCrc(0);
CRC32crc=newCRC32();
crc.reset();
zipOs.putNextEntry(entry);
intlen=0;
byte[]buffer=newbyte[2048];
intbufferLen=2048;
FileInputStreaminput=null;
try{
input=newFileInputStream(filePath);
while((len=input.read(buffer,0,bufferLen))!=-1){
zipOs.write(buffer,0,len);
crc.update(buffer,0,len);
}
}catch(Exceptione){
}finally{
if(input!=null)input.close();
}
entry.setCrc(crc.getValue());
}
java主要分三块,j2se:java的基础核心语言。j2me:java的微型模块,专门针对内存小,没有持续电源等小型设备。j2ee:java的企业模块,专门针对企业数据库服务器的连接维护。 |
|