如何在 Java/J2ee Web 应用程序中嵌入本机浏览器应用程序?

How can I embed native Browser applications in Java/J2ee web application?

我想在 Java Web 应用程序中嵌入浏览器。用例是:浏览器图标显示在我的 jsp/jsf 页面中。当我单击该图标时,它应该会打开一个浏览器 window。我尝试了一些第三方应用程序,如 Lobo、Dj native 等,但所有这些都是针对桌面应用程序的吗? 任何指针都会有所帮助。

Is it possible to inline a web browser within a web browser , something like "Citrix" , which can launch applications on our behalf in a session.

是的。您可以使用 frameset tag 来包含框架。这可能看起来像

<frameset cols="25%,*">
  <frame src="frame_a.htm">
  <frame src="frame_b.htm">
</frameset>