gpt4 book ai didi

java - 由于多部分表单数据,无法在 servlet 中使用 getParameter

转载 作者:行者123 更新时间:2023-11-30 03:25:02 24 4
gpt4 key购买 nike

我的 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(请求);有助于列出所有字段,但我无法将其用于我的应用程序。

对于我的应用程序来说,就像如果单击第一个按钮{执行此功能},如果第二个按钮{执行另一个操作}类似。

每个按钮标记都具有相同的名称“Action”,但具有不同的值,因此我从操作中读取值并使用 if else 条件执行函数调用

代码:

 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();
}

最佳答案

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

所以,你有两个选择:

  1. 迭代List<FileItem>直到找到合适的参数及其值。
  2. 而不是使用 parseRequest(request)你可以使用parseParameterMap(request) with 将返回一个 Map<String,List<FileItem>>其中关键应该是请求html 表单中的参数名称。然后你只需要采取来自值项的第一个元素的值。

编辑:假设您可以像这样解析多部分:

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();
}

关于java - 由于多部分表单数据,无法在 servlet 中使用 getParameter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30455790/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com