码迷,mamicode.com
首页 > 编程语言 > 详细

[Java][Web]Web 工程中的各类地址的写法

时间:2017-05-17 00:47:27      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:etc   end   资源   页面   html   for   war   表单   form   

// 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 工程中的各类地址的写法

标签:etc   end   资源   页面   html   for   war   表单   form   

原文地址:http://www.cnblogs.com/z5337/p/6864234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!