waysun一路阳光

不轻易服输,不轻言放弃.--心是梦的舞台,心有多大,舞台有多大。踏踏实实做事,认认真真做人。

  BlogJava :: 首页 :: 新随笔 :: 联系 ::  :: 管理 ::
  167 随笔 :: 1 文章 :: 64 评论 :: 0 Trackbacks
public String getFourToFive(double score_type)
 {
  double bl=(Math.round(score_type/.01)*.01);
  String st=String.valueOf(bl);
  /**注意,这里用.作为分隔符是失效的,不知道为什么,所以采用替换的办法*/
  st=st.replace(".", "_");
  String []st_arr=st.split("_");
  String temp="";
  if(st_arr[1].length()>2)
  {
   temp=st_arr[1].substring(0, 2);
  }
  else
  if(st_arr[1].length()<2)
  {
   temp=st_arr[1]+"0";
  }
  else
  {
   temp=st_arr[1];
  }
  return st_arr[0]+"."+temp;
 }
posted on 2009-02-22 19:23 weesun一米阳光 阅读(500) 评论(1)  编辑  收藏 所属分类: 总结备用cnweblog/nm1504

评论

# re: JAVA四舍五入(小数点后保留两位数字)[自己总结] 2009-03-03 10:04 yanran
String []st_arr=st.split("\\.");  回复  更多评论
  


只有注册用户登录后才能发表评论。


网站导航: