public static int convertCelsiusToFahrenheit(Long celcious){
return Math.round(celcious * 9/5 + 32);
}
我正在尝试将其设置为我的 TextField。我无法在 中设置值Text Field
,因为我得到了 NumberFormatException。我怎样才能用精度值发送它。
holder.textItem.setText(convertCelsiusToFahrenheit(Long.parseLong(
custom.getTemperature())));
java.lang.NumberFormatException:无效的长:“32.2222222222222”