首页 > 代码库 > javaweb處理小數點前面的0顯示在頁面上

javaweb處理小數點前面的0顯示在頁面上

//格式化数字處理方式

 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處理小數點前面的0顯示在頁面上