Struts 和 Swing 集成

发布于 2024-09-11 12:35:51 字数 167 浏览 2 评论 0原文

大家好,

我是java新手。我想开发一个 swing 应用程序和 struts 应用程序,

当用户单击下载按钮时我需要将两者集成。exe 应下载并安装在客户端电脑上。

安装后 exe 文件应与 struts 应用程序通信。

提前致谢

阿斯旺

HI guys,

I am new to java. i want to develop one swing application and struts application and i need to integrate both

when user click on download button .exe should download and install on client pc.after

installation exe file should communicate with struts application.

Thanks in advance

Aswan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨小墨 2024-09-18 12:35:51

首先,您要研究这一点,以便可以下载 Swing 应用程序: http://java.sun.com/javase/6/docs/technotes/guides/javaws/developersguide/contents.html

然后你想使用 HttpURLConnection 对服务器上的 Struts 应用程序执行 GET 和 POST 请求。

最好的选择是只执行 Swing 部分并使用 HttpURLConnection 通过 POST 访问 Servlet。您可能想研究一下命令模式,以允许您通过一个 Servlet 发送不同的请求。

另请注意:如果您可以使用网页中的应用程序 GWT 也是一个不错的选择对于这个用例,它还可以与现有的网页和 Struts 很好地集成。

First you want to study this so that you can download your Swing App: http://java.sun.com/javase/6/docs/technotes/guides/javaws/developersguide/contents.html

Then you want to use HttpURLConnection to do GET and POST requests to your Struts application on the Server.

Your best bet is to just do the Swing piece and use HttpURLConnection to access a Servlet via a POST. You might want to look into the Command pattern to allow you to send different requests through one Servlet.

On another note: If you can live with the app living within a web page GWT is also a good use case for this, it also can integrate well with existing web pages and Struts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文