Java Web Start Applet opening new Browser Window/Tab ignoring target

穿精又带淫゛_ 提交于 2019-12-10 10:18:30

问题


Having successfully migrated an applet to a java webstart applet, I notice that every call to

getAppletContext().showDocument(
new URL("http://"+ host+ "/" + filename + language + ".htm"),
 "Helppage");

opens a new browser window (Win 7/MSIE11) or tab (firefox depending on configuration) though I obviously request a specific named possibly already open browser window.

Has anyone successfully managed to redirect those calls to one browser window (tab)? If yes, how?

Looks a similar context to How do I close a browser window that was opened by Java Web Start

  • Thanks in advance

来源:https://stackoverflow.com/questions/37315819/java-web-start-applet-opening-new-browser-window-tab-ignoring-target

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