摘要: if (list.stream().filter(w->String.valueOf(w.getProductLibraryId()).equals("aaa")).findAny().isPresent()){ //说明有 } 判断list中的对象中是否有getProductLibraryId 等 阅读全文
posted @ 2020-09-09 16:51 不懂技术的雷 阅读(20087) 评论(0) 推荐(1) 编辑
摘要: 后台返回的是product对象, 然后截取product中createTime 0-10 结果和代码如下 ${fn:substring(product.createTime,"0","10")} <p>负责人:${product.createFullName }</p> <p>创建时间:${fn:s 阅读全文
posted @ 2020-08-19 16:11 不懂技术的雷 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 首先 map排序先是按照插入顺序排序 这里使用的是LinkedHashMap LinkedHashMap<String, String> breadCrumbmap = getBreadCrumb(id); Iterator it = breadCrumbmap.entrySet().iterato 阅读全文
posted @ 2020-08-10 17:36 不懂技术的雷 阅读(1423) 评论(0) 推荐(0) 编辑
摘要: 部分参考 https://blog.csdn.net/Bancroft_boy/article/details/81126478 package IO; import java.io.*; public class test { public static void main(String[] ar 阅读全文
posted @ 2020-08-05 17:43 不懂技术的雷 阅读(721) 评论(0) 推荐(0) 编辑
摘要: 总得来说 需要三步 第一步 resources下新建一个banner.txt文件 第二步 往banner.txt文件中填写内容 比如: 佛祖保佑 永无bug _ooOoo_ o8888888o 88" . "88 (| -_- |) O\ = /O ____/` '\____ .' \\| |// 阅读全文
posted @ 2020-08-05 14:10 不懂技术的雷 阅读(2475) 评论(0) 推荐(0) 编辑
摘要: public void getList(String patha){ String path=patha; File file=new File(path); File[] tempList = file.listFiles(); System.out.println("该目录下对象个数:"+tem 阅读全文
posted @ 2020-08-05 11:12 不懂技术的雷 阅读(3019) 评论(1) 推荐(0) 编辑
摘要: 基本功能: 第一种: E盘下某一个目录下所有文件以及文件夹打包下载 首先工具类 直接复制进去就好 public static void doCompress(String srcFile, String zipFile) throws IOException { doCompress(new Fil 阅读全文
posted @ 2020-08-05 10:28 不懂技术的雷 阅读(6596) 评论(0) 推荐(0) 编辑
摘要: SELECT *FROM 表名START WITH 条件CONNECT BY PRIOR ID=typePid 比如: SELECT * FROM ProLibraryType START WITH id in ('4028ac0073982a1c017398745ee10001') CONNECT 阅读全文
posted @ 2020-07-30 14:21 不懂技术的雷 阅读(254) 评论(0) 推荐(0) 编辑
摘要: var tab = $('#maintabs').tabs('getSelected'); //获得当前选中的tab 的href var url = $(tab.panel('options')).attr('href'); tab.panel('refresh', url); 阅读全文
posted @ 2020-07-13 11:03 不懂技术的雷 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 今天碰到一个需求, 进入模块的时候需要应用本地图片, 可是jsp里面<img src="C:/1.jsp"></img>是引不到的 需要在taocat里面配置 在tomcat下的conf/server.xml中增加一个代码 在<Host></Host>中间如下: <Context path="/up 阅读全文
posted @ 2020-07-09 09:39 不懂技术的雷 阅读(728) 评论(0) 推荐(0) 编辑