java
weixin_38824535
这个作者很懒,什么都没留下…
展开
-
debug时source not found
debug时source not found 问题解决原创 2017-12-04 17:45:23 · 222 阅读 · 0 评论 -
eclipse中activiti插件安装
1、在eclipse/plugins/ 目录下添加如下jar包org.eclipse.emf.transaction_1.4.0.v20100331-1738.jarorg.eclipse.emf.validation_1.7.0.201306111341.jarorg.eclipse.emf.workspace_1.5.1.v20120328-0001.jar下载地址转载 2018-01-05 10:57:53 · 265 阅读 · 0 评论 -
springmvc上传zip文件解析,并获取每个zipEntry的输入流
1.解析springmvc上传zip的工具类:public class FileUtils { //日志 private static final Logger LOGGER = LoggerFactory.getLogger(FileUtils.class); /** * 对zip类型的文件进行解压 * * @author mmy * @date 2018年1原创 2018-01-16 13:36:14 · 9301 阅读 · 10 评论 -
jdk源码(Openjdk7)下载
浏览器直接输入地址:http://download.java.net/openjdk/jdk7/promoted/b147/openjdk-7-fcs-src-b147-27_jun_2011.zip原创 2018-05-11 09:24:27 · 791 阅读 · 0 评论 -
java返回文件工具类(下载和在线预览)
public class ResponseUtils { public static void writeDownloadResponse(HttpServletResponse resp, String filename, InputStream inputStream, Optional<Integer> contentLength) { ...原创 2018-07-23 12:08:41 · 912 阅读 · 0 评论 -
java 对一些文件进行打包
// 创建;临时文件 File zip = File.createTempFile("asdcasdcas", ".zip"); ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(zip)); ...原创 2018-08-08 10:41:02 · 398 阅读 · 0 评论