首页 > 编程

JAVA开发总结

2015-11-16 13:55:08 分类: 编程

1、Float取整

long warning;
float fwarning = 0f;
fwarning = total*0.34/100;
warning = new Float(fwarning + 0.5f).longValue();

2、eclipse 经常弹出console的问题

设置方法:在window->preperences->Run/Debug->console 中,把'show when program writes to standard out'的勾去掉就可以了 

3、获取时间戳 

System.currentTimeMillis()

4、正则表达式使用

import java.util.regex.Matcher;
import java.util.regex.Pattern;

String pstr = "/p/";
Pattern p = Pattern.compile(pstr);
Matcher m = p.matcher("/p/3333");
System.out.println(m.find() ? m.group(1) : "nothing");

5、Double类型保留两位小数

DecimalFormat df=new DecimalFormat(".##");
double d=1252.2563;
String st=df.format(d);
System.out.println(st);

 

参考手册

W3c0.com 提供的内容仅用于培训。我们不保证内容的正确性。通过使用本站内容随之而来的风险与本站无关。W3c0 简体中文版的所有内容仅供测试,对任何法律问题及风险不承担任何责任。 当使用本站时,代表您已接受了本站的使用条款和隐私条款。版权所有,保留一切权利。 鲁ICP备15022115号