首页 > 代码库 > [Java][Web]Web 工程中的各类地址的写法
[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="http://www.mamicode.com/day06/index.html">链接</a>
<form action="/day06/index.html">表单</form>
[Java][Web]Web 工程中的各类地址的写法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。