如何在swing中使用用户名、密码从tomcat服务器上传、下载文件
我想在 swing 中制作一个程序,连接到本地运行的 tomcat 服务器。通过用户名、密码验证,然后用户可以上传服务器目录中的文件。即http://localhost:8080/uploadfiles。从用户定义的文件路径,与下载到本地目录相同。
I want to make a program in swing which connect to tomcat server running locally. with username,password authentication, then user able to upload file in server directory. ie.http://localhost:8080/uploadfiles. from user defined file path , and same as download to the local directory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种可能性:
下载:
上传:
现在,在服务器端,您需要区分 GET 和 POST 请求并相应地处理它们。您将需要一个库来处理上传,例如 apache FileUpload
哦,在客户端,您需要一个执行 Base64 编码的库,例如 apache commons 编解码器
Here is one possibility:
Download:
Upload:
Now, on the server side, you will need to distinguish between GET and POST requests and handle them accordingly. You will need a library to handle uploads, such as apache FileUpload
Oh, and on the client side, you will need a library that does Base64 encoding such as apache commons codec