I have a program that users can input arabic text on text area. arabic text direction is right to left, and when i write the text to the file, Text's direction change to left to right. Can I write the arabic text to file with direction is right to left?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Reverse the text in memory then write it to disk. Reverse the reverse...
|
|||
|
|
You don't need to. Its upto the displaying program to show it in the right direction. You can store the data in file as it is, and the guy who reads it and displays it is responsible for that. |
|||
|
|
|
The direction desplayed depends on the program you open your file with. All you can do is to use Unicode and if the opening program has problems with Unicode you can do nothing about it. The OS where file opened on should support Unicode as well. |
|||
|
|
Accessing files: (Input/Output)from the given link: ahm507.blogspot.com/2006/12/java-and-arabic-support.html ...still need to check the current locale setting of the client OS and Java application to make sure they are the same locale – eee Mar 23 '11 at 7:45