Search:

Type: Posts; User: Norm

Search: Search took 0.23 seconds.

  1. Replies
    11
    Views
    1,827

    Re: Using FileOutputStream to save array of bytes

    The Writer classes like FileWriter and OutputStreamWriter might work.
  2. Replies
    11
    Views
    1,827

    Re: Using FileOutputStream to save array of bytes

    That is the String returned by the byte array's toString() method.
    To write the contents of the array use: fos.write(array);

    You should use a different class and method to write text.

    For...
Results 1 to 2 of 2