我正在做这个功课,我应该将一个填充了整数的.txt
文件读入double
数组,然后将这个双数组写入另一个.txt
文件。
起初我认为一切正常,因为我能够读取文件并将其显示为图像,然后将其作为.txt
保存到double
文件中。但是,当我尝试将同一个类文件用于另一个课程(在我创建的框架中显示)时,我不断将0.0
作为输出.txt
文件的值。下面是我的读写类的代码:
import java.io.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
public class IO {
FileDialog fd;
public double[][] readData() {
fd = new FileDialog(new Frame(), "Open Files", FileDialog.LOAD);
fd.setVisible(true);
File f = null;
if ((fd.getDirectory() != null)||( fd.getFile() != null)) {
f = new File(fd.getDirectory() + fd.getFile());
}
FileReader fr = null;
try {
fr = new FileReader (f);
} catch (FileNotFoundException fnfe) {
fnfe.printStackTrace();
}
BufferedReader br = new BufferedReader(fr);
int lines = -1;
String textIn = " ";
String[] file = null;
try {
while (textIn != null) {
textIn = br.readLine();
lines++;
}
file = new String[lines];
fr = new FileReader (f);
br = new BufferedReader(fr);
for (int i = 0; i < lines; i++) {
file[i] = br.readLine();
}
br.close();
} catch (IOException ioe) {
ioe.printStackTrace();
}
double[][] data = new double [lines][];
for (int i = 0; i < lines; i++) {
StringTokenizer st = new StringTokenizer(file[i],",");
data[i] = new double[st.countTokens()];
int j = 0;
while (st.hasMoreTokens()) {
data[i][j] = Double.parseDouble(st.nextToken());
j++;
}
}
return data;
}
public void writeData(double[][] dataIn) {
fd = new FileDialog(new Frame(), "Save Files", FileDialog.SAVE);
fd.setVisible(true);
File f = null;
if ((fd.getDirectory() != null)||( fd.getFile() != null)) {
f = new File(fd.getDirectory() + fd.getFile());
}
FileWriter fw = null;
try {
fw = new FileWriter (f, true);
} catch (IOException ioe) {
ioe.printStackTrace();
}
BufferedWriter bw = new BufferedWriter (fw);
String tempStr = "";
try {
for (int i = 0; i < dataIn.length; i++) {
for (int j = 0; j < dataIn[i].length; j++) {
tempStr = String.valueOf(dataIn[i][j]);
bw.write(tempStr);
}
bw.newLine();
}
bw.close();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
我试图读取的txt文件有300行和列,其中并非所有列都填充为int number。我可以将输入txt设置为Display但无法将其保存为具有相同值的txt文件,而是以double而不是int。
有人可以帮帮我吗?
答案 0 :(得分:1)
我不确定我是否理解您的完整问题,但至少在编写文件时忘记在每个数字后添加逗号。由于readData
使用逗号分隔数字,因此程序生成的文件无法被其读取。只需更改
for (int j = 0; j < dataIn[i].length; j++) {
tempStr = String.valueOf(dataIn[i][j]);
bw.write(tempStr);
到
for (int j = 0; j < dataIn[i].length; j++) {
bw.write(String.valueOf(dataIn[i][j]) + ",");
(删除了中间tempStr
,因为现在你的代码是不必要的。)
答案 1 :(得分:0)
我认为我已经设法将其排序,不确定它是否正确。下面是我在try catch循环之前添加的数据:
BufferedWriter bw = new BufferedWriter (fw);
dataIn = getData(dataIn);
try {
我在Class中创建了一个getData(double [] [] data)方法,所以我现在可以读取数据了。