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.
我有一个代码,它将从 excel 文件中收集一个数字并将其存储到 DB MySql 中。
String P01_PickModul = row.getCell(13).getStringCellValue();
问题是我无法收集更多小数的数字,例如 1.04166666666667
我将sql上的数据类型设置为double。
你能帮我解决这个问题吗?谢谢你。
尝试 row.getDouble(13) 并且你的选择模块应该是双倍的,但我不知道,你的“行”是什么类型,所以它可能不起作用
尝试使用long作为数据类型并检查它是否有效。
long