上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: mysql 索引 阅读全文
posted @ 2018-06-07 16:25 程序员丁先生 阅读(100) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/yxjdragon/p/6030740.html 注意事项: 1、客户端添加axis jar包 2、客户端生成的5个文件中需要用到的是与服务端同名的接口,以及实现该接口的类 阅读全文
posted @ 2018-05-22 20:07 程序员丁先生 阅读(112) 评论(0) 推荐(0) 编辑
摘要: String url = "http://127.0.0.1:8080/api"; //然后根据表名获取公司信息 HttpPost httppost = new HttpPost(url); List params = new ArrayList(); params.add(new BasicNameValuePair("... 阅读全文
posted @ 2018-05-22 10:34 程序员丁先生 阅读(226) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/007sx/p/7093429.html 1. 要查询数据库 "mammothcode" 下所有表名以及表注释 /* 查询数据库 ‘mammothcode’ 所有表注释 */ SELECT TABLE_NAME,TABLE_COMMENT FROM i 阅读全文
posted @ 2018-05-20 11:27 程序员丁先生 阅读(541) 评论(0) 推荐(0) 编辑
摘要: function thousandBitSeparator(num){ var re=/\d{1,3}(?=(\d{3})+$)/g; var n1=num.toString().replace(/^(\d+)((\.\d+)?)$/,function(s,s1,s2){return s1.replace(re,"$&,")+s2;}); return n1;... 阅读全文
posted @ 2018-05-11 18:22 程序员丁先生 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 1、传参时可以设置为jsonArray的格式 2、接收先转成JSONArray 然后转成listMap 阅读全文
posted @ 2018-05-04 10:36 程序员丁先生 阅读(318) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xishaohui/p/7728032.html 1 、tofixed方法 toFixed() 方法可把 Number 四舍五入为指定小数位数的数字。例如将数据Num保留2位小数,则表示为:toFixed(Num);但是其四舍五入的规则与数学中的规则不 阅读全文
posted @ 2018-05-02 19:13 程序员丁先生 阅读(176) 评论(0) 推荐(0) 编辑
摘要: function sortprice(a,b){ //a-b为升序,b-a为降序 return a.price-b.price } data.sort(sortprice); //sore之后的data及为按某字段排序后的json 阅读全文
posted @ 2018-05-02 17:15 程序员丁先生 阅读(845) 评论(0) 推荐(0) 编辑
摘要: Properties props = new Properties(); props.put("mail.smtp.host", smtp); props.put("mail.smtp.socketFactory.port", "465"); props.put("mail.smtp.socketF 阅读全文
posted @ 2018-04-25 14:45 程序员丁先生 阅读(268) 评论(0) 推荐(0) 编辑
摘要: pjax 阅读全文
posted @ 2018-04-25 10:10 程序员丁先生 阅读(297) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页