Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图简单地把这个字符串转换成一些东西。在我的示例中,我试图转换从 JSON 返回的一些数字,我想将这些数字转换12,345为123.45.参见下面的代码
12,345
123.45.
String watts= c.getString("watts");
因此,如果返回,假设它是 12000 瓦,我现在想将其转换为 KW(千瓦)。
1 watt = 0.001 kilowatts
任何帮助将不胜感激。
试试这个,
String watts= c.getString("watts"); String kw = String.valueOf ( Double.parseDouble(watts)/1000 );