作者supersmart (c7 c7 )
看板Web_Design
标题[问题]jsp和servlet结合的问题
时间Mon Nov 28 19:26:45 2005
※ [本文转录自 Programming 看板]
作者: supersmart (c7 c7 ) 看板: Programming
标题: [问题]jsp和servlet结合的问题
时间: Mon Nov 28 19:26:06 2005
※ [本文转录自 java 看板]
作者: supersmart (c7 c7 ) 看板: java
标题: [问题]jsp和servlet结合的问题
时间: Mon Nov 28 19:19:08 2005
我要做jsp和servlet之间可以互相传值
及使用者输入值 jsp -----> servlet(一支java程式做运算)
servlet(一直java程式)-------->传值回jsp网页显示结果
目前做的测试档是 Java里面 (column是在前面有定义的class,省略上半部程式码)
public class graph extends HttpServlet{
public void doGet(HttpServletRequest request,HttpServletResponse response)
throws ServletException, IOException
{
column column1 = new column("column1",10.0,20.0);
column column2 = new column("column2",5.0,10.0);
double A=column1.getR();
response.setContentType("text/html;charset=big5");
PrintWriter out=response.getWriter();
out.print("<html><head><title>index</title></head></html>");
}
public void doPost(HttpServletRequest request,HttpServletResponse response)
throws ServletException, IOException
{
ServletContext context=getServletConfig().getServletContext();
RequestDispatcher dispatcher=context.getRequestDispatcher("/index.jsp");
request.setCharacterEncoding("big5");
dispatcher.forward(request,response);
}
}
jsp 里面
<%@ page contentType="text/html;charset=big5"%>
<html>
<head></head>
<body>
<jsp:forward page="/classes/graph" />
<%
out.println("The radius of feature 1 is:" + request.getParameter("A"));
%>
</body>
</html>
实验室学长说应该没问题,不知是不是有特别的设定,例如在xml档里面
请高手帮帮忙,很急很急
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.114.53.229
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.114.53.229
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.114.53.229