2011-07-12 221 views

回答

2

AFAIK inbuilt Java支持它。只需創建語言環境:Locale locale = new Locale("si", "LK");(si爲僧伽羅語,LK爲斯里蘭卡語)。相應的包可以是例如messages_si_LK.properties。 您也可以單獨使用語言代碼。然後:Locale locale = new Locale("si");和文件messages_si.properties。你必須照顧字體。

+0

我該如何使用JTextPane? – Thusitha

+0

在這裏設置默認語言環境http://www.exampledepot.com/egs/java.util/SetDefLocale.html 這裏有關字體http://leepoint.net/notes-java/GUI-appearance/fonts/10font。 html(JButton示例與JTextPane類似) – zacheusz

+0

Appriciate您的回覆! – Thusitha