摘要: 在原项目的 文件: .idea/workspace.xml 节点: <component name="ProjectId" id="idea编辑器给你定义的项目id" /> 复制项目id到: C:\Users\Administrator\AppData\Roaming\JetBrains\Intel 阅读全文
posted @ 2021-07-19 12:07 yccMelody 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 服务器端 客户端 注意:必须首先启动服务器,再启动客户端 阅读全文
posted @ 2019-01-24 20:41 yccMelody 阅读(2138) 评论(0) 推荐(0) 编辑
摘要: 服务器线程处理类 服务器端代码 客户端 注意,必须首先启动服务器再启动客户端 阅读全文
posted @ 2019-01-24 20:39 yccMelody 阅读(563) 评论(0) 推荐(0) 编辑
摘要: 地图JSON和JS : https://download.csdn.net/download/yccmelody/10380590 阅读全文
posted @ 2018-04-28 10:34 yccMelody 阅读(776) 评论(0) 推荐(0) 编辑
摘要: resources 资源中的 ehcache.xml 文件 java实现 阅读全文
posted @ 2018-04-09 15:55 yccMelody 阅读(1297) 评论(0) 推荐(0) 编辑
摘要: JSP访问项目工程下的地址 需要配置绝对路径的话,需要配置Tomcat 的server.xml 文件 在server.xml文件中的 <Host> </Host> 节点中添加配置 JSP访问绝地路径直接填写 即可访问 阅读全文
posted @ 2018-04-02 13:42 yccMelody 阅读(2073) 评论(0) 推荐(0) 编辑
摘要: List integerList = Arrays.asList(4, 5, 2, 3, 7, 9); List collect = integerList.stream() .map(i -> i * i).distinct() .collect(Collectors.toList()); // ... 阅读全文
posted @ 2018-03-23 17:24 yccMelody 阅读(39002) 评论(0) 推荐(0) 编辑
摘要: Map 阅读全文
posted @ 2018-03-23 14:32 yccMelody 阅读(3449) 评论(0) 推荐(0) 编辑
摘要: /** * @param start 起始日期 * @param end 结束日期 * @return */ public static List getDate(String start,String end){ // SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); List list = ne... 阅读全文
posted @ 2018-02-02 15:53 yccMelody 阅读(871) 评论(0) 推荐(0) 编辑
摘要: //实例 思路来源: https://www.cnblogs.com/bunuo/p/6140750.html 阅读全文
posted @ 2018-02-01 11:48 yccMelody 阅读(16001) 评论(0) 推荐(0) 编辑
Fork me on GitHub