Is there any way to detect an RTL language in Java?

前端 未结 4 1778
梦毁少年i
梦毁少年i 2021-01-17 09:53

I need to be able to detect whether the current language my user is viewing is an RTL (Right To Left) language like Arabic.

At the moment I\'m just detecting this ba

4条回答
  •  北海茫月
    2021-01-17 10:10

    ComponentOrientation.getOrientation(new Locale(System.getProperty("user.language"))).isLeftToRight();  
    
    • Resource

提交回复
热议问题