Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();
    }
  }
}
share|improve this question

closed as too localized by Matt Fenwick, AVD, Brian Roach, Samuel Liew, George Stocker Nov 11 '11 at 5:07

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

You cannot mix the use of 'Data' IO streams and plain readers and writers.

If you want to write binary data including a char[], you need to write(new String(chars)) (which has trivial overhead) or write the length and then loop writing chars one at a time.

share|improve this answer

If your intention is to write String s and read it back Please refer to this

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.