![]() |
The Java Developers Almanac 1.4 |
|
e43. Writing ISO Latin-1 Encoded Data try {
Writer out = new BufferedWriter(
new OutputStreamWriter(new FileOutputStream("outfilename"), "8859_1"));
out.write(aString);
out.close();
} catch (UnsupportedEncodingException e) {
} catch (IOException e) {
}
e41. Writing UTF-8 Encoded Data e42. Reading ISO Latin-1 Encoded Data
© 2002 Addison-Wesley. |