
Java
温和的洛瑞
这个作者很懒,什么都没留下…
展开
-
Java emf转png
/** * emf转png * * @param emfPath emf地址 * @param pngPath png地址 */ private static void emfToPng(String emfPath, String pngPath) throws IOException { EMFInputStream inputStream = new EMFInputStream(new FileInputStream(e...原创 2022-05-11 13:11:35 · 1594 阅读 · 9 评论 -
java pdf转png 并拼接图片
/** * pdf转图片 * * @param pdfPath pdf地址 * @param imgPath 图片地址 * @param mergeType 1,横向拼接图片,2,纵向 */ public static void test(String pdfPath, String imgPath, int mergeType) throws IOException { //利用PdfBox生成图像 .....原创 2022-05-11 13:16:45 · 364 阅读 · 8 评论 -
java 树结构分级
树结构数据代码 Stack<List<ProjectDto>> listStack = new Stack<>(); // 存储层级数据 Map<Integer, List<ProjectDto>> childrenMap = new HashMap<>(); // 入栈 listStack.push(projectDtoL....原创 2021-10-18 15:19:57 · 675 阅读 · 0 评论 -
无法打开内核设备“\\.\Global\vmx86”: 系统找不到指定的文件
打开任务管理器,启动 VMwareHostd原创 2021-04-09 10:53:31 · 116 阅读 · 0 评论 -
FastDFS安装—Nginx配置
安装安装核心库libfastcommon-1.0.36cd/libfastcommon-1.0.36 ./make.sh //编译 ./make.sh install //安装原创 2021-01-16 12:17:23 · 1408 阅读 · 0 评论 -
EasyPoi, Excel数据的导入导出
easypoi方便简单的写出Excel导出,Excel模板导出,Excel导入,Word模板导出,通过简单的注解和模板 语言(熟悉的表达式语法),完成以前复杂的写法使用easypoi 引入依赖<dependency> <groupId>cn.afterturn</groupId> <artifactId>easypoi-base</artifactId> <version>3.2....原创 2020-10-09 14:29:22 · 2097 阅读 · 0 评论