servlet——web應用中路徑問題

來源:互聯網
上載者:User

標籤:send   span   code   ansi   oct   roo   resource   charset   extends   

target.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <head>    <title>target.html</title>        <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">    <meta http-equiv="description" content="this is my page">    <meta http-equiv="content-type" content="text/html; charset=UTF-8">        <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->  </head>    <body>    目標資源html頁面  </body></html>

servlet:

package path;import java.io.IOException;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;/** * web應用中路徑問題 * @author Administrator * */public class PathDemo extends HttpServlet {    public void doGet(HttpServletRequest request, HttpServletResponse response)            throws ServletException, IOException {        response.setContentType("text/html; charset=utf-8");        //目標資源: target.html        /*         * 思考: 目標資源是給誰使用的。         *         給伺服器使用的:   / 表示在當前web應用的根目錄(webRoot下)         *         給瀏覽器使用的: /  表示在webapps的根目錄下         */                /*         * 1.轉寄         *     給伺服器使用的         *///        request.getRequestDispatcher("/target.html").forward(request, response);                /*         * 2.請求重新導向         *     給瀏覽器使用的         *///        response.sendRedirect("/day11/target.html");                /*         * 3.html頁面的超串連href         * 給瀏覽器使用的         *///        response.getWriter().write("<html><body><a href=‘/day11/target.html‘>超連結</a></body></html>");                /*         * 4.html頁面中的form提交地址         */        response.getWriter().write("<html><body><form action=‘/day11/target.html‘><input type=‘submit‘/></form></body></html>");    }}

web.xml

<?xml version="1.0" encoding="UTF-8"?><web-app version="2.5"     xmlns="http://java.sun.com/xml/ns/javaee"     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee     http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">  <display-name></display-name>    <servlet>    <servlet-name>ResourceDemo</servlet-name>    <servlet-class>resource.ResourceDemo</servlet-class>  </servlet>    <servlet-mapping>    <servlet-name>ResourceDemo</servlet-name>    <url-pattern>/ResourceDemo</url-pattern>  </servlet-mapping>    </web-app>

 

servlet——web應用中路徑問題

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.