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;
}