我有一個帶有文本字段的jsp
。我想打印出我插入文本字段的文本,但不知道如何去做。 JSP頁面:從表單獲取信息並將其粘貼到jsp
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Return the name</title>
</head>
<body>
<h1>Welcome</h1>
Insert your text here:<br>
<form name="txtForm" action="Main.java" method="post">
<input type="text" name="txt">
<input type="submit" value="Send">
</form>
</body>
</html>
這是處理JSP的class(Main.java)
:
public class Main extends HttpServlet {
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String text = request.getParameter("txt");
Date d = new Date();
System.out.println("The name you enter is:" + text + "at the time : " + d);
}
}
我想是採取從JSP的信息通過我的類,然後打印出來回到上一個jsp。如何才能做到這一點?我試圖使用<%@ import ... >
,並且使它無法工作。 :(
謝謝
我把它放到java類中?但我想打印我的課堂活動到jsp中......(抱歉,如果我沒有讓自己清楚......)... – Victor