gpt4 book ai didi

java - 将 float 组写入文件

转载 作者:行者123 更新时间:2023-12-02 03:00:14 25 4
gpt4 key购买 nike

我正在尝试将 float 组列表存储到文件中。
我尝试使用 DataOutputStream 写入文件,它工作得很好,只是数据不是以人类可读的格式写入的。
我知道我必须使用打印编写器以文本格式写入数据,但它不支持写入浮点。

PrintWriter writer = new PrintWriter("filename.txt");
writer.write(naiveNearestPoints(points.get(i))); //Gives an error
writer.println(naiveNearestPoints(points.get(i)));//**updated** correct way to do it

是否有其他方法可以将浮点以可读格式写入文件?

最佳答案

PrintWriter 支持写入浮点值:print(float)print(double) .

关于java - 将 float 组写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42459774/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com