apache tomcat中使用文件上传控件上传多个文件
我是 apache tomcat 的新手。我在我的Windows机器上运行apache tomcat。我有一个包含文件上传控件的html。使用它我应该允许其他人上传文档。我在同一个html中有另一个div来列出上传的文件。在列出文件时,我想显示其上传位置的 IP 地址。请注意,上传的文档应存储在我的本地驱动器中。指导我这样做。
我想知道如何在 apache tomcat 中添加 servlet 和 jsp 以及如何以 html 形式调用它。 提前致谢...
I am new to apache tomcat. I am running apache tomcat in my windows machine.I am having a html containing file upload control.Using that i should allow others to upload documents.I am having another div in same html to list the uploaded files. While listing the files, i want to display the ip address from where its uploaded. Note the uploaded documents should store in my local drive. Guide me in doing this..
I want to know how to add servlet and jsp in apache tomcat and how to call it form html.
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以在servlet中获取ip
,你可以在html页面中显示,你也可以保存在数据库中
you can get ip in servlet by
and you can show in html page, you can save in database as wel
提示:
request.getRemoteAddr()
Hints:
request.getRemoteAddr()