我需要能夠檢測到我的用戶正在查看的當前語言是否爲阿拉伯語的RTL(右至左)語言。有什麼辦法可以檢測Java中的RTL語言嗎?
目前我只是基於來自系統屬性user.language的語言代碼檢測到這一點,但必須有更好的方法。
我需要能夠檢測到我的用戶正在查看的當前語言是否爲阿拉伯語的RTL(右至左)語言。有什麼辦法可以檢測Java中的RTL語言嗎?
目前我只是基於來自系統屬性user.language的語言代碼檢測到這一點,但必須有更好的方法。
我覺得有點髒依靠AWT類這是相當過時,我正在處理BCP-47語言代碼,所以我結束了複製從谷歌關閉驗證碼模板:
/**
* A regular expression for matching right-to-left language codes.
* See {@link #isRtlLanguage} for the design.
*/
private static final Pattern RtlLocalesRe = Pattern.compile(
"^(ar|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Arab|Hebr|Thaa|Nkoo|Tfng))" +
"(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)");
/**
* Check if a BCP 47/III language code indicates an RTL language, i.e. either:
* - a language code explicitly specifying one of the right-to-left scripts,
* e.g. "az-Arab", or<p>
* - a language code specifying one of the languages normally written in a
* right-to-left script, e.g. "fa" (Farsi), except ones explicitly specifying
* Latin or Cyrillic script (which are the usual LTR alternatives).<p>
* The list of right-to-left scripts appears in the 100-199 range in
* http://www.unicode.org/iso15924/iso15924-num.html, of which Arabic and
* Hebrew are by far the most widely used. We also recognize Thaana, N'Ko, and
* Tifinagh, which also have significant modern usage. The rest (Syriac,
* Samaritan, Mandaic, etc.) seem to have extremely limited or no modern usage
* and are not recognized.
* The languages usually written in a right-to-left script are taken as those
* with Suppress-Script: Hebr|Arab|Thaa|Nkoo|Tfng in
* http://www.iana.org/assignments/language-subtag-registry,
* as well as Sindhi (sd) and Uyghur (ug).
* The presence of other subtags of the language code, e.g. regions like EG
* (Egypt), is ignored.
*/
public static boolean isRtlLanguage(String languageString) {
return languageString != null &&
RtlLocalesRe.matcher(languageString).find();
}
什麼是錯的Wi th AWT課程?這不像他們已經被遺棄或者類似的東西。 – 2016-11-10 21:28:44
比如說,AWT類將繼續在無頭環境中工作還不是很清楚。 – Trejkaz 2017-11-02 02:46:25