如何从java applet 中获取信息?
我有一个带有 java 小程序的简单网页。 小程序计算了一些值。 (最多 30 行文本) 然后我想将这些值发送回服务器。
抱歉我的英语不好,感谢您的帮助!
I've a simple webpage with a java applet.
The applet calculated a few values. (up to 30 lines of text)
Then I want to send the values back to the server.
Sorry for my english and thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 URL 和 URLConnection(或 HTTPUrlConnection)
读取和写入URL连接
Use URL and URLConnection (or HTTPUrlConnection)
Reading from and Writing to a URLConnection
只需使用该值作为参数对您的网络服务器进行 GET / POST HTTP 调用即可。您应该拥有任何服务器端编程语言才能处理这些参数。
Just do a GET / POST HTTP call to your webserver with the value as parameter. You should have any server side programming language in order to process those parameters.