gpt4 book ai didi

java - 如何从 .t​​xt 转换为 .xls 文件读/写?

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

因此,在我的项目中,我曾经从 .txt 文件读取/写入数据,但我意识到如果我从 excel 中执行此操作会更好> 文件。我就是这样做的。

        for (File benchmarkLoop : listOfFiles) {
String line = null;
BufferedReader in = null;
try {
in = new BufferedReader(new FileReader("benchmarks\\" + benchmarkLoop.getName()));
} catch (FileNotFoundException fnfe) {
fnfe.printStackTrace();
}
Writer writer = null;
File file = new File("results", benchmarkLoop.getName());
writer = new BufferedWriter(new FileWriter(file));}

现在我必须改变这一点,而且我对 jxl 不太熟悉。

        while (initializingIterations > 0) {
line = in.readLine();
writer.write(0 + System.getProperty("line.separator"));
markov.update( new Integer((int) (Math.round(Float.parseFloat(line)/interval))));
initializingIterations--;
}

while ((line = in.readLine()) != null )

最佳答案

试试这个,

Lists.partition(pv1Column, 3);

引用:Lists.Partition()

关于java - 如何从 .t​​xt 转换为 .xls 文件读/写?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42923503/

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