标签: java
有没有办法将浮点数转换为不带点(。)的字符串。
例如:
到
答案 0 :(得分:1)
您可以使用String.replace()
String.replace()
float a = 0.6f; String s = a + ""; s = s.replace(".", ""); System.out.println("s = " + s); // prints: s = 06