rs.getfloat问题

表中的数据是decimal(18,6)的数据,请问如果用rs.getfloat取出来后,我只想在页面显示小数点后两位,该如何处理?

作者: zcpnj   发布时间: 2011-06-15

DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
df.setMinimumFractionDigits(2);
System.out.println(df.format(3.1415926));

作者: a131988   发布时间: 2011-06-15

引用 1 楼 a131988 的回复:

DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
df.setMinimumFractionDigits(2);
System.out.println(df.format(3.1415926));


+1

作者: alexandertech   发布时间: 2011-06-15

DecimalFormat myFormat = new DecimalFormat("0.00"); 
myFormat.format(rs.getFloat(""));

作者: liutianxiong888   发布时间: 2011-06-15

Math.Rand() 四舍五入!!!

作者: chen846262292   发布时间: 2011-06-15