apache tomcat中使用文件上传控件上传多个文件

发布于 2024-10-31 03:11:15 字数 245 浏览 1 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬心 2024-11-07 03:11:15

你可以在servlet中获取ip

// This method is called by the servlet container to process a GET request.
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
    // Get client's IP address
    String addr = req.getRemoteAddr(); // 123.123.123.123

    // Get client's hostname
    String host = req.getRemoteHost(); // hostname.com
}

,你可以在html页面中显示,你也可以保存在数据库中

you can get ip in servlet by

// This method is called by the servlet container to process a GET request.
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
    // Get client's IP address
    String addr = req.getRemoteAddr(); // 123.123.123.123

    // Get client's hostname
    String host = req.getRemoteHost(); // hostname.com
}

and you can show in html page, you can save in database as wel

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文