I am trying to write a char[] and then an int, but it caused IOException when I try to read back the int. What I am really trying to do is to write a fixed byte array for a String, that's why I used the Writer class because I can't find write(char[]) in DataOutputStream. What did I do wrong?
import java.io.*;
class Test {
public static void main(String[] args) {
System.out.printf("start of main\n");
char[] cc = new char[300]; // fixed # of chars do block size can be pre-determ
ined
try {
String s = "this is a test.";
System.arraycopy(s.toCharArray(), 0, cc, 0, s.length());
System.out.printf("cc = %s\n", new String(cc));
String filename = "tst.data"; DataOutputStream ostream = new DataOutputStream(new FileOutputStream(filename
));
OutputStreamWriter writer = new OutputStreamWriter(ostream);
writer.write(cc, 0, 300);
writer.flush();
int i = 10;
ostream.writeInt(i);
writer.close();
DataInputStream istream = new DataInputStream(new FileInputStream(filename));
InputStreamReader reader = new InputStreamReader(istream);
char[] newcc = new char[300];
reader.read(newcc, 0, 300);
int j = istream.readInt();
reader.close();
System.out.printf("newcc = %s\n", new String(newcc));
System.out.printf("j = %d\n", j);
} catch (Exception e) {
e.printStackTrace();
}
}
}