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.
我想知道是否可以在 Eclipse RAP 应用程序中检测浏览器(尤其是 IE)。我想通知服务器客户端正在使用什么浏览器,以便它可以显示调整后的视图。
提前致谢!
好像我问的太早了。解决方案是:
String answer = RWT.getRequest().getHeader("User-Agent"); boolean forInternetExplorer = (answer != null && answer.indexOf("MSIE") != -1);