[問題]jsp和servlet結合的問題
※ [本文轉錄自 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
Web_Design 近期熱門文章
PTT數位生活區 即時熱門文章