Struts 和 Swing 集成
大家好,
我是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您要研究这一点,以便可以下载 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.