public class Test {
public static void main(String[] args) {
double num = 1244.23344;
String s = String.valueOf(num);
int pos = s.lastIndexOf(".");
String str = s.substring(pos+1, pos+3);
System.out.println(str);
}
}
在这里有用到的String类中的三个方法,
valueOf:返回int/long参数的字符串表示形式。
lastIndexOf:返回在此字符串中最右边出现的指定子字符串的索引。
substring: 返回一个新字符串,它是此字符串的一个子字符串。
具体说明可以查看Java doc,希望对你有帮助。 |