form表单提交数据到后台java

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form表单提交数据到后台java相关的知识,希望对你有一定的参考价值。

jsp里面的代码 <form name="form1" method="post" action="/servlet/Login">

xml配置
<servlet>
<description>This is the description of my J2EE component</description>
<display-name>This is the display name of my J2EE component</display-name>
<servlet-name>Login</servlet-name>
<servlet-class>com.hospital.Login</servlet-class>
</servlet>

<servlet-mapping>
<servlet-name>Login</servlet-name>
<url-pattern>/servlet/Login</url-pattern>
文件位置

为什么会出现这个页面

jsp中的action路径的前面加上/hospital,这是你整个项目的路径追问

修改了后显示这个

参考技术A 你应该先访问那个jsp啊

Form表单如何传递List数组对象到后台的解决办

参考技术A java中使用request.getParameter("参数名")方法来获取form表单传过来的数据。
具体代码如下:
jsp代码:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Demo</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
</head>
<body>
<form action="demoServlet" method="post">

以上是关于form表单提交数据到后台java的主要内容,如果未能解决你的问题,请参考以下文章

在线等!关于jsp页面表单中文数据提交到后台出现乱码问题!

form表单提交中文乱码(前台中文到JAVA后台乱码)问题及解决

layui的from表单提交到后台

Form表单如何传递List数组对象到后台的解决办

form表单

java form表单提交到另一个jsp页面,但页面不跳转过去,求指点