将我的小程序链接到服务器目录以从那里接收或保存文件?
我正在寻找一个代码来保存在小程序中创建的文件,通常是文本文件,我想将它们保存在服务器目录上,我该怎么做。
I' m looking for a code to save the files created in a applet normally text files i want to save them on a server directory how can i do so.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是如何发送
字符串
的示例。事实上,任何对象
都可以发送到此方法,只要它是可序列化的并且同一版本的对象存在于applet 和servlet 上。从小程序发送
在服务器端检索
Here is an example of how to send a
String
. In fact anyObject
can be sent this method so long as it's serializable and the same version of the Object exists on both the applet and the servlet.To send from the applet
To retrieve on the server side
没有人会把这个放在盘子里递给你。您必须在小程序中编写代码才能与服务器建立套接字连接并发送数据。解决此问题的一种方法是通过 HTTP 推送数据,并使用诸如 commons- 之类的库httpclient。这需要您的服务器处理适当的 HTTP 动词。
还有许多其他选择,正确的选择取决于您要解决的问题的细节。
No one is going to hand you this on a plate. You have to write code in your applet to make a socket connection back to your server and send the data. One way to approach this is to push the data via HTTP, and use a library such as commons-httpclient. That requires your server to handle the appropriate HTTP verb.
There are many other options, and the right one will depend on the fine details of the problem you are trying to solve.