2019年10月10日

百分比转换数字

摘要: String[] str = distributionRatio.split("\\,");//如果(distributionRatio包含多个数)需要拆分 Double i = 0.0; for(int j=0;j<str.length;j++){ Double b=Double.parseDou 阅读全文

posted @ 2019-10-10 14:22 多言 阅读(1256) 评论(0) 推荐(0) 编辑

接收的String类型转换Integer Integer.parseInt();

摘要: String insurance = (String) params.get("companyName"); Integer insur = Integer.parseInt(insurance); insuranceCompany.setId(insur); setupInsuranceRelat 阅读全文

posted @ 2019-10-10 14:12 多言 阅读(945) 评论(0) 推荐(0) 编辑

2019年9月9日

通过JavaMail发送(群发)邮件示例(内含附件图片) 代码复制可用

摘要: 需要导入 javax.mail.jar 参考 https://www.cnblogs.com/ysocean/p/7666061.html 中内容 import java.util.Properties;import javax.activation.DataHandler;import javax 阅读全文

posted @ 2019-09-09 09:58 多言 阅读(535) 评论(0) 推荐(0) 编辑

2019年9月3日

需要把获取系统的当前时间存入库里 获取时是String类型,库里是Datetime类型 String 转化 Date

摘要: SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); java.util.Date 库里的时间字段名 = null; try { 库里的时间字段名 = sdf.parse(sdf.format(new Date())); 阅读全文

posted @ 2019-09-03 11:24 多言 阅读(288) 评论(0) 推荐(0) 编辑

导航