Search found 1 match

by snoopyhs
Tue Dec 21, 2010 8:40 am
Forum: Volume 4 (400-499)
Topic: 458 - The Decoder
Replies: 71
Views: 27408

Re: Simple Java output Question for 458

The input to this problem is not ASCII, it may contain bytes with codes greater than 127.

Your code works with Unicode codepoints (Java's "char" type), but non-ASCII bytes may represent different codepoints, depending on file's encoding. You should either find out how to do binary I/O in Java ...

Go to advanced search