I need to convert a UTF8 file into 8-bit. Of coarse, there is no way to do this perfectly, but it would be nice if there was a function that would make an intellegent substitution for characters that aren't in ASCII. For instance, the curly double quotes character would become a normal double quotes. I tried using String.getBytes("ISO-8859-1"), but it just ...