Converting a String with negative numbers and decimals into an int?
本问题已经有最佳答案,请猛点这里访问。
我正在尝试使用
但是,我遇到了一个问题,出现了以下错误:
Exception in thread"AWT-EventQueue-0" java.lang.NumberFormatException: For input string:"-106.55"
其中EDOCX1[1]是我试图转换为int的字符串之一。
发生什么事?
如果您想保留一个
1 | int n = (int)d; |