All I want to do is read characters from a notepad and convert it to bytes and save it another file.
"a.txt" has the simple text in notepad "Hello World!"
However, in "b.txt", I still see the human readable characters instead of the byte values. I also noticed that when I do a System.out.print(ba), it prints the bytes.
Can anyone tell me why Java does not write the byte values to "b.txt"?
import java.io.*;
class a {
static int f;
static String s;
public static void main(String args[])
throws IOException {
BufferedReader br = new BufferedReader(new FileReader ("a.txt"));
BufferedOutputStream w = new BufferedOutputStream(new FileOutputStream("b.txt"));
byte ba[] = new byte[1024];
while((s=br.readLine())!=null) {
ba = s.getBytes();
System.out.print(ba);
w.write(ba);
}
w.flush();
w.close();
br.close();
}
}



Hello worldThat file is stored with an encoding. This means that the file will really contain the bytes:48 65 6C 6C 6F 20 77 6F 72 6C 64Notepad "translates" these bytes into characters. If you read these bytes, and the write the bytes back to a new file, the file will be identical to the original file, and notepad will still "translate" the bytes to characters. – Alderath Sep 2 '12 at 21:23