简体   繁体   中英

How to convert decimal value stored in a string to integer in java?

如果字符串类似于String str =“1490.20”,如何在java中将字符串转换为整数?

Use int i = (int) Double.parseDouble("1490.20"); to convert it to an integer, but to keep the decimal, just use double d = Double.parseDouble("1490.20"); .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM