DIsplaying arabic text on UI

I need to know how can we set the localization for any device so that it can display text in arabic without the use of unicodes.
Actually currently i read unicodes & then display the arabic data. I want that these unicodes should not be used so that when i read arabic data from any server i display them on the UI as it is.
Please let me know if this is possible. If not please provide me with some solution.
Thanks in advance...

For properties files you don't actually have a choice, they support only 8859-1 (this is probably the most commonly asked question on this forum).
Having the characters represented as ASCII escaped Unicode does not mean that you cannot read the files, however. A number of editors render them just fine. For instance, UniRed and SC Unipad.

Similar Messages

  • Display Arabic text in ScrollPane Component ?

    hello,
    i have RSS reader it's work fine with english but the problem
    is arabic text don't display in RSS reader just english and help
    about to display arabic text in ScrollPane component that component
    reader info from xml file and display it ?
    Regard,
    Crimson

    any idea ?

  • Problem displaying arabic text in xml document

    Hi ..
    I have an xml type coloum where i store an xml document that contains some arabic texts with UTF-8 encoding, m using an xsl file to transform the xml and display it in an html page.
    At the database level when i select the xml col to dispaly the document, arabic texts are displayed correctly (DB is set to 1256), however when trying to display the text on html it gives me junk values. XSL sheet's encoding is set to windows-1256. M using Jdeveloper 1012 and BC4J frame work in my application.
    How do i solve this problem.?
    P.S.it wud b great if u support ur answer with examples .
    Regards

    You have to do it yourself -  I don't have a ready solution. Just look into documentation how StyleSheets are used and see what properties work best for you:
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/TextField.html
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/StyleSheet.html
    Also, with embedded fonts you need to play with TextFormat settings and AntiAliasType
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/AntiAliasType.html
    In addition, on my machine even if I don't emebed fonts - Arabic works in Arial, TImes and others.

  • Problem in displaying Arabic text in flash cs3/cs4

    Hi All, I'm creating one website. I have to display dynamic xmlize arabic text in flash. I have done it using flash cs3/AS3. But problem is that when text displays in flash it is not rendering as expected. Some gaps comes in the characters. But when I open my xml in browser, arabic text displays correct.
    Is there any way to do it in flash cs3 or Flash cs4 using player 9? It would be really great if anyone can give me solution on this. Thanks
    Chandrakant

    You have to do it yourself -  I don't have a ready solution. Just look into documentation how StyleSheets are used and see what properties work best for you:
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/TextField.html
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/StyleSheet.html
    Also, with embedded fonts you need to play with TextFormat settings and AntiAliasType
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/AntiAliasType.html
    In addition, on my machine even if I don't emebed fonts - Arabic works in Arial, TImes and others.

  • Displaying arabic text in jsp page

    Hi,
    Iam displaying some arabic values which will come from server in my jsp page.
    but the problem when display the values its showing rubbish like �������������
    when i select the view-->encoding from browser its showing arabic values..
    i set <meta http-equiv="Content-Type" content="text/html; charset=windows-1256"> like this in my jsp page..
    When i put the arabic text in normal .html page its working fine its displaying fine..
    when iam calling jsp page iam getting above problem..
    do i need to make any setting in server..iam using j2ee refrence server..
    Regards,

    use UTF-8 for character encoding then arabic text will display

  • Display Arabic text

    Hello All,
    I have a sample arabic text, which i have stored into file. I want to read that file and display the arabic text on the screen.
    If anyone has any idea please give me some inputs.
    Thanks & Regards,
    Faiz.

    Hi,
    I have wrote some code for reading the text from file, and have also hardcoded some arabic text in TextField which shows up properly. But after reading the arabic text from file and setting the text to TextField the text is not shown properly its like ??????.
    Please see the source code below.
    * ReadText.java
    * Created on December 2, 2009, 8:42 AM
    package arabicsample;
    import java.awt.Color;
    import java.awt.ComponentOrientation;
    import java.awt.Font;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.UnsupportedEncodingException;
    import java.nio.charset.Charset;
    * @author  faiz.chachiya
    public class ReadText extends javax.swing.JFrame {
        /** Creates new form ReadText */
        public ReadText() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            jLabel1 = new javax.swing.JLabel();
            txtArabic = new javax.swing.JTextField();
            jButton1 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jLabel1.setText("Text");
            txtArabic.setFont(new java.awt.Font("Lucida Sans", 0, 10));
            txtArabic.setText("&#1603;&#1610;&#1601; &#1581;&#1575;&#1604;&#1603; ");
            jButton1.setText("Read");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addContainerGap()
                            .addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 32, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(txtArabic, javax.swing.GroupLayout.PREFERRED_SIZE, 299, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(layout.createSequentialGroup()
                            .addGap(162, 162, 162)
                            .addComponent(jButton1)))
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(txtArabic, javax.swing.GroupLayout.PREFERRED_SIZE, 22, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(22, Short.MAX_VALUE))
            pack();
        }// </editor-fold>
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
            // TODO add your handling code here:
            readTextFromFile();
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new ReadText().setVisible(true);
        public void readTextFromFile() {
            try {
                final File file = new File(System.getProperty("user.dir") + "/conf/arabictext.txt");
                final BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file), Charset.forName("utf-8")));
                final String str = br.readLine();
    //Charset.forName("utf-8").newEncoder().encode(in)
                System.out.println("File text : " + str);
                System.out.println("            " + txtArabic.getText());
                System.out.println("Reading Process Completly Successfully.");
                Font font = txtArabic.getFont();
                System.out.println("GetFont " + font);
                txtArabic.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
                txtArabic.setBackground(Color.ORANGE);
                txtArabic.setText(str);
                final String UTF8Str = new String(str.getBytes());
                System.out.println(UTF8Str);
            } catch (UnsupportedEncodingException ue) {
                System.out.println("Not supported : ");
            } catch (IOException e) {
                System.out.println(e.getMessage());
        // Variables declaration - do not modify
        private javax.swing.JButton jButton1;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JTextField txtArabic;
        // End of variables declaration
    }Please see the UTF-8 text file below. When i open the file, i see the text something similar in below.
    ??? ????One from UTF file from wordpad.
    &#1603;&#1610;&#1601; &#1581;&#1575;&#1604;&#1603;So can you please correct where i am going wrong.
    Thanks and Regards,
    Faiz.

  • Display arabic text in Tablemodel

    Hi all,
    i have to show some arabic text (in UTF-8) in my TableModel, but i only get boxes (not ????).
    When I check the popup box, setting my mouse over the row, i can see the text correctly.
    Also, using debug, i can see that the string contains arabic text.
    Is there any option i must activate to see it in my table?

    You will need to set the Font for the renderer to one that has glyphs for Arabic characters. On my Linux system there are a whole load of fonts that seem to work. A small subset is
    "Arab","Cortoba" and "Courier New"
    Edited by: sabre150 on Jun 9, 2009 2:15 PM

  • How can I display Arabic text in browser

    I have MessagesBundle_ar_AE.properties file created containing key,equivalent Arabic value text. When I try to get this key value by using Bundle object.. MissingResourceException is occuring. It says can't find resource for bundle,PropertyResourceBundle for specified key, eventhough the exists in the .properties file...
    please help..

    Be sure that .property files are in the classpath.
    http://forum.java.sun.com/thread.jsp?forum=16&thread=383005

  • Arabic text displayed incorrectly on sites!

    Arabic text characters are all connected one to another in a word, but FireFox displays the letters right, except they are disconnected and each letter is on its own, making it very difficult if not impossible to read.
    What I used to do in the past is, pages that contain Arabic Text for me such as Facebook, I used to install IETAB2 and set facebook to always open with IETAB and then the text would display correctly.
    The strange thing is, if you use IE, it would display the same garbage isolated Arabic letters, but the IETAB with IE7 emulation works like a charm.
    With that said, recently, FF stopped displaying arabic text correctly even with IETAB2
    But Google Chrome always works like a charm without the need for anything.
    I have tried changing the encoding on the site but that doesn't help
    Can anyone suggest anything please?
    Google Chrome, Correct display of Arabic Text:
    http://img148.imageshack.us/img148/9937/chromefc.png
    FireFox with IETAB or without, same result:
    http://img11.imageshack.us/img11/8855/firefoxlh.png
    Anything other than UTF-8 will just display as jibberish.
    But the problem with UTF-8 is that the Arabic letters are not linked one to the other, each one is seperated, makeing it very difficult to read.
    What's even weirder is, I checked with Chrome, which displays Arabic Text just fine, and it is also using the UTF-8 encoding but it works!? Please help as I don't want to use Chrome :(

    The point is to see if disabling that setting temporarily and selecting some other fonts makes a difference.<br />
    It is possible that the Lucida Grande font that you have isn't working properly.

  • Support for Arabic text and Direction:rtl

    I am using HTML/CSS/Javascript to develop my application.
    I have been trying to get direction:rtl (right to left) to
    work to display Arabic text in the right form with no luck.
    Does Adobe AIR lack the support for this feature ? If so,
    what are the alternatives to Adobe AIR ??
    I hope one of the Adobe employees reply to this....

    > Any update on the Arabic support in Air ??
    http://labs.adobe.com/technologies/textlayout/
    "Bidirectional text, vertical text and over 30 writing
    systems including Arabic, Hebrew, Chinese, Japanese, Korean, Thai,
    Lao, the major writing systems of India, and others.
    Selection, editing and flowing text across multiple columns
    and linked containers, and around inline images"

  • Arabic Text in TextInput in Flash Builder 4.5.1

    Hello,
    I am currently developing a mobile application that is supposed to work on both Android and iOS devices. I am supposed to display arabic text and also to take arabic text input from the user. While I was trying to display simple output and input components I faced a problem with the TextInput. Please note the following:
    -The TextInput component displays the arabic text in reversed order and the characters are disjoint.
    -The label component does not have this problem and it accepts and displays the arabic text correctly.
    -An embedded font was added
    -The problem exists on both IPad and Galaxy Tab however the IPad displays the text correctly while typing (before loosing the focus on the TextInput). On the other hand, the Galaxy Tab displays the text in a wrong way both while typing and on focus out. However, the suggested words (above the keyboard in the Galaxy tab) are shown correctly.
    Please check the snapshots below.
    From Ipad:
    Thank you.

    Here's the solution:
    The problem did not exist on an installation of Flash Builder on a spare MacBookPro.
    On my main computer (the one with the Flash Builder issue) I uninstalled and reinstalled Flash Builder 4.5 (then updated to 4.5.1). Creating an iOS Mobile Application now creates the correct code.
    I have no idea why it was creating dodgy code.
    The only difference with the new Flash Builder install is that SourceMate 3.0 is not installed yet. Perhaps something had gone wrong in the Adobe Updater when going from 4.5 to 4.5.1, who know...all speculation...anyhow it works now!

  • Displaying  arabic using j2me

    hi every body,
    my experience with j2me is very little and i need to display arabic text
    i am using eclipse and carbide j1.5
    i searched the forum and i found that writing the following should work
    String s=new String("arabic_string".getBytes(), "UTF-8");
    but when i display s it appears like ????
    i used
    String en= System.getProperty("microedition.encoding");
    String lc= System.getProperty("microedition.locale");
    the ecoding is ISO8859-1
    and the locale is en or ar according to the setting of the phone language
    i am testing on deviced nokia n73 and nokia 6630
    i got the same output with the 2 device
    urgent help is required plz
    and if any body has a sample code that would be great
    thanks

    salam raghda ,
    I am experience with arabic text. i use also eclipse
    this is what you need :
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.PrintStream;
    import java.io.UnsupportedEncodingException;
    import java.sql.SQLException;
    public class font {
    public static void main(String[] args) {
    String word_temp="�������";
    try {
    word_temp = new String(word_temp.getBytes("utf8" ));
    } catch (UnsupportedEncodingException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
    System.out.println(word_temp);
    any help you are welcome
    Faraj

  • English to Arabic Text

    Hi, How do you simply display Arabic text in ILL CS3. I'm Using a Mac 10.5.6.
    The text has been supplied correctly as outlines in Arabic, but I want to reflow the sentences, and would like to make these changes.
    When I open the file that hasn't been converted to outlines, the text is gibberish.
    Any help would be appreciated, as to how I can display the Arabic text correctly.
    Thanks, Steven

    To handle Arabic, you need to use Middle Eastern editions of Adobe software, such as Illustrator CS4-ME. Arabic is a script based language where each character charges its form depending upon the position within the word. If you import Arabic and place in English Illustrator, it will incorrectly reverse the characters, and not join them.
    see http://www.fontworld.com/me/illustratorme.html

  • Arabic text not displaying correctly in Win Server 2008 R2

    Hi,
    We have an .mdb database stored on our Windows Server 2008 R2 server but when we view the contents some of the text has strange characters.
    When we view the same db in Windows Server 2003 we do not have these characters. I'm not sure what exactly we need to do to correct this issue..
    Any suggestions welcome..

    Hi,
    Thanks for your post.
    When you open a Web page or a text file that contains a string of Arabic characters, the string is not displayed correctly. This issue occurs when the following conditions are true:
    The Left-to-Right Override (LRO) Unicode control character is used in the string of Arabic characters.
    You specify a font that is not Simplified Arabic Fixed.
    Please apply the hotfix below:
    Incorrectly displayed Arabic characters in Windows 7 or in Windows Server 2008 R2
    https://support2.microsoft.com/kb/976525?wa=wsignin1.0
    And check the result.
    Regards.
    Vivian Wang

  • Problems with displaying dynamic Arabic text

    We have a problem with a navigation system we are building
    which has to be able to display dynamic Arabic text. We are pulling
    in the Arabic text using XML. The problem we are having is that the
    character are not displaying joined up where they should be (for
    instance in the middle of words). Arabic characters have different
    shaping according to the position they take up within a word. What
    we are producing is apparently unreadable. Has anyone come accross
    this problem before? Is it solveable?

    Hi:
    Is there any possible chance that Adobe would do something to asist us Fl8 users with international character support.
    Everyone has some work-around, except Abode, and they are all usually related to XML.
    My setup is PHP (CMS supporting many languages) -> MySQL -> PHP -> Flash8 (Dynamic Text Fields) and the olpart that does not work is when I inject an extended character into the string - Flash stops displaying anything from that character on.
    If Adobe has or did have some component / solution or anything other than the usual System.useCodePage = true (which never seems to actually work), please let me know.
    Best Regards,

Maybe you are looking for

  • Sound status

    Hi guys, I am trying to set up a very simple sound status if statement but I am getting this error message and I have no idea why - "Handler not found in object: #status" As you enter the frame a sound plays on channel one. There is a stop and pause

  • PO showing wrong status

    Hi :  I have setup approval for PO. I have one PO in the worklist, it shows PO awaiting approval and whenni go and check detials in PO for the Approval view on the Header Data tab, it says No Approval Required. which is correct as per our setting. co

  • Which vi ist best to save data for later usage in GNU R?

    Hi, I want to save values of several instuments every 10 ms into a file (mydata.csv) and evaluate the data with GNU R. GNU R can read .csv files and use first line as names and # lines as comment. mydata.csv should look like this: # Date: 2002-12-23

  • ADF af:inputComboboxListOfValues for multiple selection

    Hi, Can inputComboboxListOfValues be customized for multiple selection just like SelectManyChoice so that the component can avail the search facility. regards

  • Outbound Web Service - called by scripting

    Hi, I have a problem dealing with external web services. I was provided the WSDL from an external app, then I run the WSDL Import Wizard to create the Business Service and several Integration Objects, 2 per method within the WSDL file, after that, I