2020年3月24日

String 计算的值保留2位小数

摘要: public static void main(String[] args) { DecimalFormat format = new DecimalFormat("0.00"); String prem ="123.456"; String premium = format.format(new 阅读全文

posted @ 2020-03-24 13:26 多言 阅读(3280) 评论(0) 推荐(0) 编辑

2020年3月16日

Java excel转化为pdf(数据写入excel)

摘要: String IDs = (String) params.get("IDs"); String[] idList = IDs.split(","); List<BasicInformation> basic = new ArrayList<BasicInformation>(); for(int i 阅读全文

posted @ 2020-03-16 17:26 多言 阅读(1066) 评论(0) 推荐(0) 编辑

2020年3月12日

AES工具类

摘要: package com.sinosoft.cms.common.util;import org.apache.commons.lang3.StringUtils; import net.sf.json.JSONObject; import javax.crypto.BadPaddingExcepti 阅读全文

posted @ 2020-03-12 17:38 多言 阅读(285) 评论(0) 推荐(0) 编辑

SHA1算法工具类

摘要: package com.sinosoft.cms.common.util;import java.security.MessageDigest;import org.apache.commons.lang3.StringUtils; import net.sf.json.JSONObject; im 阅读全文

posted @ 2020-03-12 17:33 多言 阅读(689) 评论(0) 推荐(0) 编辑

2020年3月4日

jsp与jsp页面之间传值中文,页面显示乱码问题

摘要: xxx.jsp 页面传值到 confirm.jsp 页面 在拼接url时,对于中文名称字段应该加上 encodeURIComponent 方法,对中文进行十六进制编码 window.location.href = "${ctx}/cms/manage/confirm.jsp?applicantNam 阅读全文

posted @ 2020-03-04 18:20 多言 阅读(549) 评论(0) 推荐(0) 编辑

2019年11月4日

java 判断字符串是否包含特定的字符(截取指定字符前面或者后面的值)

摘要: public static void main(String[] args) { String str = "四川省成都市"; if(str.indexOf("省")!=-1){ System.out.println("存在"); }else{ System.out.println("不存在!"); 阅读全文

posted @ 2019-11-04 17:19 多言 阅读(5233) 评论(0) 推荐(0) 编辑

js 判断输入框不能为空格

摘要: var telephone= $("#telephone").val();//联系电话 if(telephone.indexOf(" ") >= 0||telephone==null||telephone==""||typeof(telephone)=="undefined"){ alert("请填 阅读全文

posted @ 2019-11-04 16:31 多言 阅读(2447) 评论(0) 推荐(0) 编辑

2019年10月15日

Java百分数之间算法 百分数转小数

摘要: 如需计算两个百分数的结果 需转化成小数之间的算法 //假设返回来的 test = [10%,90%] String[] str = test.split("\\,"); Double i = 0.0; for(int j=0;j<str.length;j++){ Double b=Double.pa 阅读全文

posted @ 2019-10-15 17:31 多言 阅读(5277) 评论(0) 推荐(0) 编辑

2019年10月11日

java jsp页面上显示的时间为一串数字和jsp页面时分秒显示为0

摘要: 网上有的说是需要在实体上加注解 我这里在jsp页面解决的 代码如下 : function timestampToTime(timestamp) { if(timestamp == '' || timestamp == null || typeof(timestamp) == "undefined") 阅读全文

posted @ 2019-10-11 10:56 多言 阅读(1427) 评论(0) 推荐(0) 编辑

2019年10月10日

Java 验证前台返回的是不是百分数 在后台用正则表达式验证百分比数据

摘要: public static void main(String[] args) { String returnStr="10%"; String reg = "^([0-9.]+)[ ]*%$"; if(returnStr.matches(reg)){ System.out.println("是"); 阅读全文

posted @ 2019-10-10 16:34 多言 阅读(2272) 评论(0) 推荐(0) 编辑

导航