将 java 对象从 .jsp 发送到 java
我有一个页面,用户在其中输入信息到表单中,然后点击提交。当单击提交按钮时,用户将数据 POST 到 java 文件。我正在使用 out.print()
打印字符串,但是在提交 HTML 表单时如何 POST 对象?
I've got a page where the user inputs information into a form and then hits submit. When the submit button is clicked the user POST's data to a java file. I'm using out.print()
to print Strings but how would I POST an object when the HTML form is submitted?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果有任何这样的表单,当用户单击提交按钮时。
表单将提交到操作 url "/myServlet" 。这里的action 是servlet 或非action。
我们可以通过 request.getParameter("myObj"); 从服务器端获取数据
If there is any form like this, when user clicks on submit button.
form will be submitted to the action url "/myServlet" . here action is servlet or nay action.
we can get the data from the serverside by using request.getParameter("myObj");
单击提交时,请求将转到 servlet。
在servlet中可以获取表单数据。
查看此示例简单 Servlet 示例
如果一个对象必须从 jsp 传递,然后 DWR 可用于此目的。
这里我解释了如何在DWR中进行操作
DWR 的一些教程
When submit is clicked the request will go to a servlet.
In servlet the form data can be obtained.
Check this example Simple Servlet example
If an object has to be passed from jsp then DWR can be used for this purpose.
Here I gave an explanation of how to do in DWR
Some tutorials for DWR