全国前50智慧园区提供商方案合集.zip



-
中国全国前50名的智慧园区提供商的智慧园区解决方案一网打尽,全面了解。
-
2021-04-14
-
2021-04-12
-
2021-04-08
-
2021-03-16
-
2021-03-16
1KB
配色方案.zip
2019-05-26keil5配色方案,代码编辑页面配色方案,个性化教程,温柔炫酷黑色背景。
2.8MB
华为公安警务云解决方案Brochure.zip
2019-08-07华为公安警务云解决方案Brochure.zip
2.14MB
密码合集.zip密码合集,压缩包,后台密码,常见密码等等
2020-04-13密码字典合集,包括rar,zip压缩包常见密码,网站后台密码,详细密码与top密码100个。有着众多的密码字典,选择适合自己的进行暴力破解。
99KB
全国计算机等考(三级)☆合集.zip
2020-05-13全国计算机等考(三级)☆合集.zip 软件式做题 嵌入式的题库 方便模拟检测
698KB
org.apache.tools.zip.*需要的jar包
2015-07-10主要使用该jar包中的以下类: org.apache.tools.zip.ZipEntry; org.apache.tools.zip.ZipFile; org.apache.tools.zip.ZipOutputStream;
15KB
dtree.zip|dtree.zip|dtree.zip
2012-05-09dtree.zip|dtree.zip|dtree.zip
1.12MB
org.apache.tools.zip.*文件打包需要的jar包
2018-02-06import org.apache.tools.zip.ZipEntry; import org.apache.tools.zip.ZipFile; import org.apache.tools.zip.ZipOutputStream; 需要的jar包,压缩zip包和解压zip包,远程打包,文件批量下载、文件批量上传
6.22MB
flex actionscript3开发教程合集.flex开发教程合集.zip
2021-01-24flex actionscript3开发教程合集.flex开发教程合集.zip
4.12MB
《腾讯云:腾讯海纳智慧园区》.zip
2021-03-06聚焦目标:园区商业模式,从租售向服务模式转变,数字化人:园区一码通,数字化物:智启云控架构,数字化服务:应用开放平台框架,海纳智慧园区总设计,智慧园区PAAS平台:打造1+N+X产品架构,智慧园区SaaS平台:打造1+N+X产品架构,业务大数据中台一体化介绍,园区搭建5大智慧板块,智慧园区运营体系等
15.30MB
ikvm-0.40.0.1.zip
2011-07-31ikvm-0.40.0.1.zip ikvm-0.40.0.1.zip ikvm-0.40.0.1.zip ikvm-0.40.0.1.zip
55.6MB
themeforest合集.zip
2013-08-27themeforest合集.zip,
57KB
修改硬盘.网卡.IP工具合集.zip
2013-01-02修改硬盘ID 网卡MAC IP工具合集 .zip
2.27MB
51.物流园区案例-美国AOA.zip
2021-03-2251.物流园区案例-美国AOA.zip
8KB
org.apache.tools.zip解决解压乱码问题
2015-12-02package com.cliff.common; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.util.Enumeration; import org.apache.tools.zip.ZipEntry; import org.apache.tools.zip.ZipFile; import org.apache.tools.zip.ZipOutputStream; /** * * 类名: ZipUtil.java<br> * 描述:压缩/解压缩zip包处理类<br> * 创建者:XXX<br> * 创建日期:2015年5月7日 - 下午1:35:02<br> * 版本: V0.1 <br> * 修改者: <br> * 修改日期:<br> */ public class ZipUtil { /** * * 功能描述:压缩文件 <br> * 创建者:XXX <br> * 创建日期: 2015年5月7日 - 下午1:35:18<br> * 版本: V0.1 <br> * 修改者: <br> * 修改日期:<br> * @param directory 指定压缩文件路径 压缩到同目录 * @throws IOException<br> * void<br> */ public static void zip(String directory) throws FileNotFoundException, IOException { zip("", null, directory); } /** * * 功能描述:压缩文件 <br> * 创建者:XXX <br> * 创建日期: 2015年5月7日 - 下午1:36:03<br> * 版本: V0.1 <br> * 修改者: <br> * 修改日期:<br> * @param zipFileName 压缩产生的zip包文件名--带路径,如果为null或空则默认按文件名生产压缩文件名 * @param relativePath 相对路径,默认为空 * @param directory 文件或目录的绝对路径 * void<br> */ public static void zip(String zipFileName, String relativePath, String directory) throws FileNotFoundException, IOException { String fileName = zipFileName; if (fileName == null || fileName.trim().equals("")) { File temp = new File(directory); if (temp.isDirectory()) { fileName = directory + ".zip"; } else { if (directory.indexOf(".") > 0) { fileName = directory.substring(0, directory.lastIndexOf("."))+ "zip"; } else { fileName = directory + ".zip"; } } } ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(fileName)); try { zip(zos, relativePath, directory); } catch (IOException ex) { throw ex; } finally { if (null != zos) { zos.close(); } } } /** * * 功能描述:压缩文件 <br> * 创建者:XXX <br> * 创建日期: 2015年5月7日 - 下午1:37:55<br> * 版本: V0.1 <br> * 修改者: <br> * 修改日期:<br> * @param zos 压缩输出流 * @param relativePath 相对路径 * @param absolutPath 文件或文件夹绝对路径 * @throws IOException<br> * void<br> */ private static void zip(ZipOutputStream zos, String relativePath, String absolutPath) throws IOException { File file = new File(absolutPath); if (file.isDirectory()) { File[] files = file.listFiles(); for (int i = 0; i < files.length; i++) { File tempFile = files[i]; if (tempFile.isDirectory()) { String newRelativePath = relativePath + tempFile.getName() + File.separator; createZipNode(zos, newRelativePath); zip(zos, newRelativePath, tempFile.getPath()); } else { zipFile(zos, tempFile, relativePath); } } } else { zipFile(zos, file, relativePath); } } /** * * 功能描述:压缩文件 <br> * 创建者:XXX <br> * 创建日期: 2015年5月7日 - 下午1:38:46<br> * 版本: V0.1 <br> * 修改者: <br> * 修改日期:<br> * @param zos 压缩输出流 * @param file 文件对象 * @param relativePath 相对路径 * @throws IOException<br> * void<br> */ private static void zipFile(ZipOutputStream zos, File file, String relativePath) throws IOException { ZipEntry entry = new ZipEntry(relativePath + file.getName()); zos.putNextEntry(entry); InputStream is = null; try { is = new FileInputStream(file); int BUFFERSIZE = 2 << 10; int length = 0; byte[] buffer = new byte[BUFFERSIZE]; while ((length = is.read(buffer, 0, BUFFERSIZE)) >= 0) { zos.write(buffer, 0, length); } zos.flush(); zos.closeEntry(); } catch (IOException ex) { throw ex; } finally { if (null != is) { is.close(); } } } /** * * 功能描述:创建目录 <br> * 创建者:XXX <br> * 创建日期: 2015年5月7日 - 下午1:39:12<br> * 版本: V0.1 <br> * 修改者: <br> * 修改日期:<br> * @param zos zip输出流 * @param relativePath 相对路径 * @throws IOException<br> * void<br> */ private static void createZipNode(ZipOutputStream zos, String relativePath) throws IOException { ZipEntry zipEntry = new ZipEntry(relativePath); zos.putNextEntry(zipEntry); zos.closeEntry(); } /** * * 功能描述:解压缩文件 <br> * 创建者:XXX <br> * 创建日期: 2015年5月7日 - 下午1:39:32<br> * 版本: V0.1 <br> * 修改者: <br> * 修改日期:<br> * @param zipFilePath zip文件路径 * @param targetPath 解压缩到的位置,如果为null或空字符串则默认解压缩到跟zip包同目录跟zip包同名的文件夹下 * void<br> */ public static void unzip(String zipFilePath, String targetPath) throws IOException { InputStream is = null; FileOutputStream fileOut = null; File file = null; ZipFile zipFile = null; try { zipFile = new ZipFile(zipFilePath,"GBK"); String directoryPath = ""; if (null == targetPath || "".equals(targetPath)) { directoryPath = zipFilePath.substring(0, zipFilePath.lastIndexOf(".")); } else { directoryPath = targetPath; } for(Enumeration entries = zipFile.getEntries(); entries.hasMoreElements();){ ZipEntry entry = (ZipEntry)entries.nextElement(); file = new File(directoryPath+"/"+entry.getName()); if(entry.isDirectory()){ file.mkdirs(); }else{ //如果指定文件的目录不存在,则创建之. File parent = file.getParentFile(); if(!parent.exists()){ parent.mkdirs(); } is = zipFile.getInputStream(entry); fileOut = new FileOutputStream(file); int readLen = 0; byte[] buffer = new byte[4096]; while ((readLen = is.read(buffer, 0, 4096)) >= 0) { fileOut.write(buffer, 0, readLen); } fileOut.close(); is.close(); } } zipFile.close(); } catch (IOException ex) { throw ex; } finally { if(null != zipFile){ zipFile = null; } if (null != is) { is.close(); } if (null != fileOut) { fileOut.close(); } } } /** * * 功能描述:生产文件 如果文件所在路径不存在则生成路径 <br> * 创建者:XXX <br> * 创建日期: 2015年5月7日 - 下午1:41:04<br> * 版本: V0.1 <br> * 修改者: <br> * 修改日期:<br> * @param fileName 文件名 带路径 * @param isDirectory 是否为路径 * @return<br> * File<br> */ public static File buildFile(String fileName, boolean isDirectory) { File target = new File(fileName); if (isDirectory){ target.mkdirs(); } else { if (!target.getParentFile().exists()) { target.getParentFile().mkdirs(); target = new File(target.getAbsolutePath()); } } return target; } }
26.33MB
autojs4.1.1合集.zip
2020-03-19内容包含软件及打包插件,懒人必备手机辅助工具,包含有部分示例脚本,及教程,作学习交流使用。为Auto.js是基于JavaScript的,学习Auto.js的API之前建议先学习JavaScript的基本语法和内置对象,可以使用教程前面的两个JavaScript教程链接来学习。
41.50MB
UNIX网络编程 卷一卷二合集.zip
2012-05-23UNIX网络编程 卷一卷二合集.zipUNIX网络编程 卷一卷二合集.zip
364KB
linux/unix Shell 编程学习笔记(pdf,清晰)
2009-11-18linux/unix Shell 编程学习笔记,pdf,清晰,还是很不错的
269KB
Ionic.Zip.dll C#创建zip压缩包类库
2012-11-29Ionic.Zip.dll C#创建zip压缩包类库 具体用法 搜索一下就可以
-
下载
md5.ts egret直接使用的加密代码
md5.ts egret直接使用的加密代码
-
下载
01-08 何晓晔-数字化供应链助力企业降本增效.pdf
01-08 何晓晔-数字化供应链助力企业降本增效.pdf
-
下载
ODSC21最新「可解释人工智能XAI」报告
ODSC21最新「可解释人工智能XAI」报告
-
下载
ray+flink文档结合规范
ray+flink文档结合规范
-
下载
Java打包工具Launch4j.zip
Java打包工具Launch4j.zip
-
下载
0421-threadTest.zip
0421-threadTest.zip
-
下载
Windows10/2016 Telnet服务端一键安装无时间限制,突破防火墙限制@
Windows10/2016 Telnet服务端一键安装无时间限制,突破防火墙限制@
-
下载
一款随机密码生成器 Password Generator 3.8 绿色中文版.zip
一款随机密码生成器 Password Generator 3.8 绿色中文版.zip
-
下载
PS滤镜可以去除图片网格、图片HDR增强
PS滤镜可以去除图片网格、图片HDR增强
-
下载
anubis-2.3-lin-static-64b
anubis-2.3-lin-static-64b
