How can I detect the operating system using GWT?

北慕城南 提交于 2019-12-06 02:13:50

问题


Basically what I want to know is to find out if my GWT application is running on a MacOS or any other operating system, to setup the shortcuts properly using cmd on a MacOS and ctrl everywhere else.


回答1:


You can use:

import com.google.gwt.user.client.Window.Navigator;
...

String platform = Navigator.getPlatform();

This returns a String (the same as JavaScript's navigator.platform). You can then decide on the OS similar to this script: It simply checks for the substring "Win"/"Mac"/"iPhone"/"Linux".



来源:https://stackoverflow.com/questions/4372443/how-can-i-detect-the-operating-system-using-gwt

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!