新的浏览器窗口,其中包含 Java 小程序生成的信息
我有一个 Java 小程序。
用户将数据输入到Java小程序控件中后,他按下Java小程序中的按钮,Java小程序执行一些计算,结果是一个表格(为简单起见,表格可以被视为String[][]
)。
我想显示新的浏览器窗口并将其中的表格输出为 html 。 这怎么能做到呢? 首选方法是在需要时使用 javascript,但不涉及某些服务器端处理。
I have a Java applet.
After user inputs data into the Java applet controls he presses button in Java applet and Java applet performs some calculating and result is a table (for simplicity table can be considered as String[][]
).
I want to show new browser window and output this table in it as html <table>
.
How can this be done?
Preferred way is to use javascript if needed, but not involving some server side handling.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,必须使用 JavaScript 来打开窗口并填充 HTML - 这是小程序无法访问的内容。
幸运的是,JavaScript 可以轻松调用 Java applet 提供的任何公共方法。不幸的是,Java 无法将 String[][] 返回给 JavaScript,但它可以返回 String。
因此,您可以做的是让 Java 小程序返回 String[][] 数组的 JSON 序列化。然后,JavaScript 可以使用 JSON.parse 函数将该 JSON 转换为 JavaScript 数组(在大多数现代浏览器上都可用,但在 处也有可用的库) json.org)
因此,这里是我正在讨论的示例(至少适用于 Java 5 和 Chrome):
Applet 代码
JavaScript 代码
如果您需要进一步说明,请告诉我!
Well, JavaScript will have to be used to open the window and populate the HTML - this is something the applet simply has no access to.
Luckily, JavaScript can easily call any public methods your Java applet provides. Unfortunately, Java cannot return a String[][] to JavaScript, but it CAN return a String.
So what you can do is have your Java applet return a JSON serialization of your String[][] array. JavaScript can then convert that JSON to a JavaScript array using the JSON.parse function (available on most modern browsers, but there are also libaries available at json.org)
So here's an example of what I am talking about (that works with at least Java 5 and Chrome):
The Applet Code
The JavaScript Code
Let me know if you need further clarification!
如果您确实不能进行任何服务器端交互,则必须是 jQuery 隐藏/显示情况。
如果您可以承担一些服务器端工作,请使用与 servlet 协作的 applet 来完成。小程序不会进行计算; servlet 将会。完成后,servlet 将结果添加到输出页面并将输出流重定向到该页面。
If you really must not have any server side interaction, it'll have to be a jQuery hide/show situation.
If you can bear some server side work, do it with an applet collaborating with servlet. The applet won't do the calculation; the servlet will. After it's complete, the servlet adds the result to the output page and redirects the output stream to it.