Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Which OS do you have? – CloudyMarble Mar 23 '11 at 7:02
Encoding setting problem - See 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
more: stackoverflow.com/questions/361975/… and "file.encoding" property is not supposed to modified by user; use Locale instead bugs.sun.com/view_bug.do?bug_id=4163515 – eee Mar 23 '11 at 8:03

3 Answers

Reverse the text in memory then write it to disk. Reverse the reverse...

StringUtils.reverse(str)
share|improve this answer
Use it with care for Unicode characters involving surrogate pairs...se download.oracle.com/javase/tutorial/i18n/text/design.html – eee Mar 23 '11 at 7:51

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.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.