简体   繁体   中英

How to get a less specific Locale in Java

Suppose I have Locale enUS = new Locale("en", "US"); . Is there a way to extract the language locale from it, better/nicer than Locale en = new Locale(enUS.getLanguage()); ?

虽然我觉得上面的内容不太冗长,但是commons.lang的LocaleUtils看起来更干净:

LocaleUtils.toLocale(enUS.getLanguage());

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM