标签:javaweb
//格式化数字處理方式
DecimalFormat min=new DecimalFormat("0.00"); bd.setMin_aperture(min.format((rs.getDouble(26))));
//格式化数字
DecimalFormat max=new DecimalFormat("0.00");
bd.setMax_aperture(max.format((rs.getDouble(27))));
bd.setManufacture_tool_code(rs.getString(28));
标签:javaweb
原文地址:http://10985830.blog.51cto.com/10975830/1912417