[Java][Web]Web 工程中的各类地址的写法
Posted 秤心
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Java][Web]Web 工程中的各类地址的写法相关的知识,希望对你有一定的参考价值。
// 1.
request.getRequestDispatcher("/index.html").forward(request,response);
// 以 / 开头,对于浏览器 / 表示网站,对于服务器 / 表示当前的 web应用
// \ 反斜杠 用于访问硬盘资源的路径分隔符
// 2.
response.sendRedirect("/day05/index.html");
// 3.
this.getServletContext().getRealPath("/index.html");
// 4.
this.getServletContext().getResourceAsStream("/public/foot.jsp");
// 5. html / jsp 页面
<a href="/day06/index.html">链接</a>
<form action="/day06/index.html">表单</form>
以上是关于[Java][Web]Web 工程中的各类地址的写法的主要内容,如果未能解决你的问题,请参考以下文章