上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: 1:使用js编码 var value=window.encodeURI(window.encodeURI(strValue)); 2:Java类中解码。 String str=URLDecoder.decode(value,"UTF-8"); 阅读全文
posted @ 2016-07-18 08:37 Sunray0330 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-07-15 14:42 Sunray0330 阅读(107) 评论(0) 推荐(0) 编辑
摘要: Integer douVal=20; double parseDouble = Double.parseDouble(douVal.toString()); System.out.println(parseDouble); 阅读全文
posted @ 2016-07-13 14:52 Sunray0330 阅读(1152) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-07-07 11:51 Sunray0330 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 查看mysql版本的四种方法 1:在终端下:mysql -V。 以下是代码片段: [shengting@login ~]$ mysql -V mysql Ver 14.7 Distrib 4.1.10a, for redhat-linux-gnu (i686) 2:在mysql中:mysql> st 阅读全文
posted @ 2016-07-07 11:45 Sunray0330 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 1:正则表达式 public static void main(String[] args) { String str = "123456456456456456"; boolean isNum = str.matches("[0-9]+"); System.out.println(isNum); 阅读全文
posted @ 2016-07-07 11:02 Sunray0330 阅读(461) 评论(0) 推荐(0) 编辑
摘要: public class TestDemo { public static void main(String[] args) { BigDecimal dataValue = new BigDecimal(200); BigDecimal data=new BigDecimal(1); BigDec 阅读全文
posted @ 2016-07-07 08:32 Sunray0330 阅读(292) 评论(0) 推荐(0) 编辑
摘要: //待测试数据 int i = 100; //得到一个NumberFormat的实例 NumberFormat nf = NumberFormat.getInstance(); //设置是否使用分组 nf.setGroupingUsed(false); //设置最大整数位数 nf.setMaximu 阅读全文
posted @ 2016-06-14 10:47 Sunray0330 阅读(936) 评论(0) 推荐(1) 编辑
摘要: int i_m = 270000 ; String str_m = String.valueOf(i_m); String str ="000000"; str_m=str.substring(0, 6-str_m.length())+str_m; System.out.println(str_m) 阅读全文
posted @ 2016-06-14 10:46 Sunray0330 阅读(373) 评论(0) 推荐(0) 编辑
摘要: /** * * 项目名称:${project_name} * 类名称:${type_name} * 类描述: * 创建人:${user} * 创建时间:${date} ${time} * 修改人:${user} * 修改时间:${date} ${time} * 修改备注: * @version * 阅读全文
posted @ 2016-06-07 12:00 Sunray0330 阅读(585) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页