Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
java有没有办法检查当前程序中的键盘语言是什么?例子:
铬:英文
日食:英文
Skype:西班牙语
(我可以通过 jna 获取当前程序 - 外部库)
非常感谢 !
尝试这个:
import java.awt.im.*; public class _Test { public static void main(String[] args) { InputContext context = InputContext.getInstance(); System.out.println(context.getLocale().toString()); } }