Hello,
i am trying to write a CSV file include arabic data using java as
PrintWriter out = new PrintWriter("file.csv", "UTF8");
and the when i open the file in Linux machine , the Arabic displayed fine but it doesn't work with windows machine.
and when set encoding to be "Cp1256" as
PrintWriter out = new PrintWriter("file.csv", "Cp1256");
The Arabic is displayed fine with windows xp & window7 but fails with linux and windows vista.
So what is the right encoding that make file works with all OSs ?
Thanks in Advance
Neveen