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>
文件位置
为什么会出现这个页面
修改了后显示这个
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的主要内容,如果未能解决你的问题,请参考以下文章