如何从java中的多部分请求中获取值

发布于 2024-11-08 06:10:20 字数 389 浏览 0 评论 0原文

这是表单提交部分

var form=document.forms["mainForm"];
form.setAttribute("action",url_action);
form.setAttribute("method","post");
form.setAttribute("enctype","multipart/form-data");
form.setAttribute("encoding","multipart/form-data");
form.submit();

现在我如何获取所有参数或表单输入类型名称以及相应的值到 servlet 中的映射?

地图示例:

name=Abhishek
age=25
filename=abc.txt

Here is the form submission part

var form=document.forms["mainForm"];
form.setAttribute("action",url_action);
form.setAttribute("method","post");
form.setAttribute("enctype","multipart/form-data");
form.setAttribute("encoding","multipart/form-data");
form.submit();

Now how can I get all the parameters or form input type names and corresponding values to a map in servlet?

Map example:

name=Abhishek
age=25
filename=abc.txt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梅窗月明清似水 2024-11-15 06:10:21

使用 Commons / FileUpload

最简单的情况最简单的使用场景如下:
上传的项目应保留在
只要合理的记忆
小的。较大的项目应该写
到磁盘上的临时文件。非常
大的上传请求不应该
允许的。内置默认值
物品的最大尺寸
保留在内存中的最大
允许的上传请求大小,
以及临时文件的位置
是可以接受的。处理请求
这种情况不会太多
更简单:

// Create a factory for disk-based file items
FileItemFactory factory = new DiskFileItemFactory();

// Create a new file upload handler
ServletFileUpload upload = new ServletFileUpload(factory);

// Parse the request
List /* FileItem */ items = upload.parseRequest(request);

来源: 使用 FileUpload

Use Commons / FileUpload:

The simplest case The simplest usage scenario is the following:
Uploaded items should be retained in
memory as long as they are reasonably
small. Larger items should be written
to a temporary file on disk. Very
large upload requests should not be
permitted. The built-in defaults for
the maximum size of an item to be
retained in memory, the maximum
permitted size of an upload request,
and the location of temporary files
are acceptable. Handling a request in
this scenario couldn't be much
simpler:

// Create a factory for disk-based file items
FileItemFactory factory = new DiskFileItemFactory();

// Create a new file upload handler
ServletFileUpload upload = new ServletFileUpload(factory);

// Parse the request
List /* FileItem */ items = upload.parseRequest(request);

Source: Using FileUpload

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