摘要:
1:使用js编码 var value=window.encodeURI(window.encodeURI(strValue)); 2:Java类中解码。 String str=URLDecoder.decode(value,"UTF-8"); 阅读全文
摘要:
Integer douVal=20; double parseDouble = Double.parseDouble(douVal.toString()); System.out.println(parseDouble); 阅读全文
摘要:
阅读全文
摘要:
查看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 阅读全文
摘要:
1:正则表达式 public static void main(String[] args) { String str = "123456456456456456"; boolean isNum = str.matches("[0-9]+"); System.out.println(isNum); 阅读全文
摘要:
public class TestDemo { public static void main(String[] args) { BigDecimal dataValue = new BigDecimal(200); BigDecimal data=new BigDecimal(1); BigDec 阅读全文
摘要:
//待测试数据 int i = 100; //得到一个NumberFormat的实例 NumberFormat nf = NumberFormat.getInstance(); //设置是否使用分组 nf.setGroupingUsed(false); //设置最大整数位数 nf.setMaximu 阅读全文
摘要:
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) 阅读全文