由于Multipart表单数据,无法在servlet中使用getParameter

时间:2015-05-26 10:21:30

标签: java jsp servlets multipartform-data

我的jsp页面中有几个文本框和4到5个按钮,基于按钮点击和我需要执行操作的表单中的数据。

但是我无法在我的servlet中使用request.getParameter()

我的JSP代码:

    <form action="UsageEngine" method="post" target="console" enctype="multipart/form-data">
        <input class="form-control" type="file" multiple name="filepath"    
            required>
<br> <input class="form-control" type="text"
            name="Grepfilename" placeholder="Command Line.."><br>
        <!-- <input class="form-control" type="text" name="FileToBeDownloaded" placeholder="File to be Downloaded"><br> -->
        <select class="form-control" name="env">
            <option>pinDap75a</option>
            <option>pinIap04a</option>
            <option>pinDap71a</option>
        </select><br>
        <button class="btn btn-danger" name="action" id="Irel"
            value="test" onclick="show()">Env Check</button>
        <button class="btn btn-success" name="action" value="process"
            onclick="show()">Process SFTP</button>
        <button class="btn btn-warning" name="action" id="grep" value="Grep"
            onclick="show()">Grep</button>
        <button class="btn btn-primary" name="action" id="Download"
            value="Download" onclick="show()">Init Irel</button>
        <button class="btn btn-info" name="action" id="Irel"
            value="completeIrel" onclick="show()">Complete Irel</button>
</form>

文件上传工作正常。但我也需要传递文件名,环境细节和按钮的值。 对于所有这些getParameter非常有帮助,但由于Multipart / form-data,我无法使用它。

upload.parseRequest(请求);有助于列出所有字段,但我不能将它用于我的应用程序。

对于我的应用程序,它就像IF第一个按钮点击{执行此功能},如果s2nd Button {做另一个动作}那样。

每个Button标签都有相同的名称&#34; Action&#34;但是具有不同的值,所以我从动作中读取值并使用if else条件执行函数调用

COde:

 if (Action.equalsIgnoreCase("Grep")) {
            String Filenames = request.getParameter("Grepfilename");
            String[] GrepFileName = Filenames.split(",");
            try {
                for (int i = 0; i < GrepFileName.length; i++) {

                    GrepOutput.addAll(ExecEngine.ExecuteGrep(GrepFileName[i],
                            env));

                }

            } catch (JSchException e) {
                e.printStackTrace();
            } catch (SftpException e) {
                e.printStackTrace();
            } catch (InterruptedException e) {
                e.printStackTrace();
            } catch (ArrayIndexOutOfBoundsException e) {
                e.printStackTrace();
            }

            request.setAttribute("consoleOutputForSFTP", GrepOutput);
            request.getRequestDispatcher("/consoleOutput.jsp").forward(request,
                    response);
        } else if (Action.equalsIgnoreCase("Download")) {
            try {
                consoleOutputForSFTP = ExecEngine.deployIrelWrapper(env);
                request.setAttribute("consoleOutputForSFTP",
                        consoleOutputForSFTP);
                request.getRequestDispatcher("/consoleOutput.jsp").forward(
                        request, response);
            } catch (JSchException | InterruptedException e) {
                e.printStackTrace();
            }
        } else if (Action.equalsIgnoreCase("completeIrel")) {
            String GrepFileName = request.getParameter("Grepfilename");
            try {
                consoleOutputForSFTP = ExecEngine.deployFinalIrelWrapper(
                        GrepFileName, env);
                request.setAttribute("consoleOutputForSFTP",
                        consoleOutputForSFTP);
                request.getRequestDispatcher("/consoleOutput.jsp").forward(
                        request, response);
            } catch (JSchException | InterruptedException e) {
                e.printStackTrace();
            }

2 个答案:

答案 0 :(得分:2)

假设您使用Apache Commons FileUpload处理多部分数据,则会从List<FileItem>获得upload.parseRequest(request)。 但是,FileItem有一个方法isFormField()来检查字段(使用getFieldName()检索其名称)是否为表单字段。

所以,你有两个选择:

  1. 迭代List<FileItem>,直到找到合适的内容 参数及其价值。
  2. 而不是使用parseRequest(request)你 可以使用parseParameterMap(request)并返回a Map<String,List<FileItem>>其中密钥应该是请求 来自html表单的参数名称。然后你只需要拿走 值的第一个元素的值。
  3. 修改 假设您可以像这样解析多部分:

    ServletFileUpload upload = new ServletFileUpload();
    Map<String,List<FileItem>> paramMap = upload.parseParameterMap(request);
    

    然后你可以有一个像request.getParameter(name)一样的辅助方法,将paramMap作为参数传递:

    public String getParameterFromMap(String paramName, Map<String,List<FileItem>> map) {
        if ((paramName == null) || (map == null) || (map.isEmpty() == true)) {
            return null;
        }
        List<FileItem> items = map.get(paramName);
        if ((items == null) || (items.isEmpty() == true)) {
            return null;
        }
        FileItem firstItem = items.get(0);
        if ((firstItem == null) || (firstItem.isFormField() == false)) {
            return null;
        }
        return firstItem.getString();
    }
    

答案 1 :(得分:0)

在这种情况下,您可以使用隐藏变量来设置javascript单击的按钮的值,并且可以通过item.getString()值获取servlet上的隐藏参数值。