摘要:
The Version 9.5 default for the max_coordagents and max_connections parameters will be AUTOMATIC, with max_coordagents set to 200 and max_connections 阅读全文
摘要:
报错: -错误的sql语句:update Persons SET FirstName = 'Fred' WHERE id_P = 1com.ibm.db2.jcc.am.SqlException: Operation not allowed for reason code "7" on table 阅读全文
摘要:
yum install https://get.docker.com/rpm/1.7.1/centos-6/RPMS/x86_64/docker-engine-1.7.1-1.el6.x86_64.rpm - 查看docker : docker version 出现问题 可能是兼容问题 或者是 内核 阅读全文
摘要:
private static Long getCurrentMonday() { SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); int mondayPlus = getMondayPlus(); GregorianCalendar currentDate... 阅读全文
摘要:
JSONPath是fastjson在1.2.0之后支持的。JSONPath是一个很强大的功能。关于JSONPath的介绍请查看官方文档 JSONPath。 官方文档上给出了详细的说明以及使用。但是官方文档没有具体的说明对于JSONPath在JSON数据中的使用,下面我来讲解一下JSONPath在JS 阅读全文
摘要:
原因:对list 、map 等迭代的时进行修改就会抛出java.util.ConcurrentModificationException异常 比如: 这段代码中 对 map :segstatusmap 遍历进行了remove操作, 报错如题。解决方法: 用Iterator 的remove() 阅读全文
摘要:
在信息解析的过程中发生很多bug ,直接gson去转,这里很是推荐这个,很好用,自定义类型的转化效率很高 阅读全文
摘要:
转自:zsychanpin1、Windows平台 在windows命令行窗体下运行: 1.查看全部的port占用情况 C:\>netstat -ano 协议 本地地址 外部地址 状态 PID TCP 127.0.0.1:1434 0.0.0.0:0 LISTENING 3236 TCP 127.0. 阅读全文
摘要:
一堆代码 我这里想说的是: styletop.setFillForegroundColor(IndexedColors.TAN.getIndex()); //表头颜色 styletop.setFillPattern(CellStyle.SOLID_FOREGROUND); //没有这一行 无法显示颜 阅读全文
摘要:
String StaffName = new String(request.getParameter("StaffName").getBytes("iso-8859-1"),"utf-8"); 阅读全文