I want to know that when I use PrintWriter for writing to a file. It will write with ASCII code in the file or binary format?
Thanks.
|
|
|||||||
|
|
A For example, if you have a 16-bit encoding like UTF-16 then there will be an extra zero byte for each ASCII byte:
prints |
||||
|
|
|
It will output character data. But this can be beyond the ASCII set, which holds only 128 characters, of which the first 32 are special control characters. |
|||
|
|
|
You can write most ASCII letters as text or binary and you will get the same outcome with most characters encodings. Two of the ASCII characters have a special meaning in text files, are newline \n and carriage return \r. This means that if you have text file and you want to write a String which contains these characters it can be hard or impossible for the reader to distinguish between end-of-line in the text file e.g. println() and end-of-line you put in a String e.g. print("1\n2\n3\n") |
|||
|
|