Re: encoding problems with Jakarta-site

2001-03-17 Thread Robert Burrell Donkin
here's a fix which works for me Jon Stevens wrote: Here is the little test program: import java.io.*; import java.lang.*; import java.util.*; import org.jdom.*; import org.jdom.input.*; import org.jdom.output.*; public class Test { public static void main (String[] args) {

Re: encoding problems with Jakarta-site

2001-03-17 Thread Jon Stevens
on 3/17/01 10:02 AM, "Robert Burrell Donkin" [EMAIL PROTECTED] wrote: FileWriter uses the system default encoding which is MacRoman (latin-1) roll your own "ISO-8859-1" FileWriter OutputStreamWriter fw=new OutputStreamWriter( new FileOutputStream("text.html"),"ISO-8859-1"); Ahh...ok...I

Re: encoding problems with Jakarta-site

2001-03-15 Thread Ceki Gülcü
At 22:12 14.03.2001 -0800, Jon Stevens wrote: Ok, I think this encoding stuff with Ceki's name is a bug in the OSX JVM that I'm using, so we may have to revert back to using "u" for a bit until the OSX GM is out and I can test/use that. :-( The weird thing is that I'm not convinced that it is

Re: encoding problems with Jakarta-site

2001-03-14 Thread Sam Ruby
Jon Stevens wrote: I think this encoding stuff with Ceki's name is a bug in the OSX JVM that I'm using, so we may have to revert back to using "u" for a bit until the OSX GM is out and I can test/use that. :-( The weird thing is that I'm not convinced that it is the OSX JVM though...here is