java中的devanagari i18n

java中的devanagari i18n,java,internationalization,indic,Java,Internationalization,Indic,我正试图使用互联网上的ttf示例文件,将java中的i18n用于devanagari/hindi 我可以加载资源包条目,也可以加载ttf和设置字体,但它不会按照需要呈现jlabel。它显示块来代替字符。如果我在eclipse中调试,我可以将鼠标悬停在unicode变量上,它甚至可以呈现devanagari。下面是代码和资源包供参考 package i18n; import java.awt.Font; import java.awt.GridLayout; import java.io.Inp

我正试图使用互联网上的ttf示例文件,将java中的i18n用于devanagari/hindi

我可以加载资源包条目,也可以加载ttf和设置字体,但它不会按照需要呈现jlabel。它显示块来代替字符。如果我在eclipse中调试,我可以将鼠标悬停在unicode变量上,它甚至可以呈现devanagari。下面是代码和资源包供参考

package i18n;

import java.awt.Font;
import java.awt.GridLayout;
import java.io.InputStream;
import java.util.Locale;
import java.util.ResourceBundle;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class MyNumbers extends JFrame {
    private ResourceBundle rb;
    private Font devanagariFont;

    public MyNumbers (String language, String fontFile) {
        loadResourceBundle(language);
        loadFont(fontFile);
        display();
    }

    private void display() {
        String unicode = null;

        JPanel labels = new JPanel(new GridLayout(0,2));
        JLabel uni = null;
        for(int i=0; i<=10; i++) {
            unicode = rb.getString("" +i);
            labels.add(new JLabel("" + i));
            labels.add(uni = new JLabel(unicode));
            uni.setFont(devanagariFont);
        }
        getContentPane().add(labels);
        setDefaultCloseOperation(DISPOSE_ON_CLOSE);
        pack();
        setVisible(true);
    }

    private void loadFont(String fontFile) {
        try {
            InputStream input = getClass().getResourceAsStream(fontFile);
            Font b = Font.createFont(Font.TRUETYPE_FONT, input);
            devanagariFont = b.deriveFont(Font.PLAIN, 11);

        } catch(Exception e) {
            e.printStackTrace();
        }
    }

    private void loadResourceBundle(String language) {
        String base = getClass().getName() + "rb";
        rb = ResourceBundle.getBundle(base, new Locale(language));

    }

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        new MyNumbers("hi", "Devnew.ttf");
    }

}
试试这个
正如原始问题所述,属性文件默认为ISO-8859-1。

只需在unicode标签上设置字体,默认字体就可以很好地呈现出来。

尝试运行SymbolText小程序,选择900范围,然后选择您尝试使用的字体。将结果与选择标准字体(如Devanagari MT)进行比较。您的字体版本可能与JVM上的TrueType实现不兼容

尝试调用getFontName()、getNumGlyphs()、canDisplay()和canDisplayUpTo()以验证加载的字体是否符合预期


因为您知道Eclipse可以呈现Devanagari,所以如果需要,请尝试识别并使用Eclipse使用的字体。

使用utf-8加载资源

ResourceBundle messages=ResourceBundle.getBundle(“resources/MenuBarResources”,locale,new UTF8Control())


我已经在属性文件中为非ascii字符使用\u序列,因此不需要进行任何转换。该文件是带有\u序列的普通ascii文件,unicode变量能够在调试模式下很好地呈现自身,但它只是swing JLabel没有呈现它。
Default properties in Devnagari
0=\u0915\u0916\u0917:
1=\u090f\u0915:
2=\u0926\u094b:
3=\u0924\u0940\u0907:
4=\u091a\u093e\u0930:
5=\u092a\u093e\u091a:
6=\u091b\u0947:
7=\u0938\u093e\u0924:
8=\u0906\u093e\u0920:
9=\u0928\u094c:
10=\u0926\u0938:
random=Random
title=Key in numbers to match the words
public class UTF8Control extends Control {
public ResourceBundle newBundle
    (String baseName, Locale locale, String format, ClassLoader loader, boolean reload)
        throws IllegalAccessException, InstantiationException, IOException
{
    // The below is a copy of the default implementation.
    String bundleName = toBundleName(baseName, locale);
    String resourceName = toResourceName(bundleName, "properties");
    ResourceBundle bundle = null;
    InputStream stream = null;
    if (reload) {
        URL url = loader.getResource(resourceName);
        if (url != null) {
            URLConnection connection = url.openConnection();
            if (connection != null) {
                connection.setUseCaches(false);
                stream = connection.getInputStream();
            }
        }
    } else {
        stream = loader.getResourceAsStream(resourceName);
    }
    if (stream != null) {
        try {
            // Only this line is changed to make it to read properties files as UTF-8.
            bundle = new PropertyResourceBundle(new InputStreamReader(stream, "UTF-8"));
        } finally {
            stream.close();
        }
    }
    return bundle;
}
}