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

时间:2011-04-07 10:49:30

标签: java html apache jsp servlets

我是apache tomcat的新手。我在我的Windows机器上运行apache tomcat。我有一个包含文件上传控件的html。使用我应该允许其他人上传文件。我在同一个html中有另一个div来列出上传的文件。列出文件时,我想显示其上传的IP地址。请注意,上传的文档应存储在我的本地驱动器中。指导我这样做..

我想知道如何在apache tomcat中添加servlet和jsp以及如何在html中调用它。 提前谢谢......

2 个答案:

答案 0 :(得分:1)

你可以通过

在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页面中显示,你可以保存在数据库中

答案 1 :(得分:1)