摘要: 防盗链:如果请求不是通过本站的超链接发出的,发送错误状态码404。Referer这个请求头,表示请求的来源! 使用referer头可以知道,请求的来源。 阅读全文
posted @ 2017-03-22 20:55 贱贱的小帅哥 阅读(113) 评论(0) 推荐(0) 编辑
摘要: //网头 request.getRequestDispatcher("/public/header.jsp").include(request, response); response.getWriter().write("dfs<br/>"); //网脚 request.getRequestDis 阅读全文
posted @ 2017-03-22 19:59 贱贱的小帅哥 阅读(96) 评论(0) 推荐(0) 编辑
摘要: String data="xxxxxx"; request.setAttribute("data", data); //request也可实现转发 request.getRequestDispatcher("/message.jsp").forward(request, response); <bo 阅读全文
posted @ 2017-03-22 19:49 贱贱的小帅哥 阅读(129) 评论(0) 推荐(0) 编辑
摘要: //已post方式提交 request.setCharacterEncoding("UTF-8"); String name=request.getParameter("username"); System.out.println(name); //已get方式提交 String name1=req 阅读全文
posted @ 2017-03-22 16:52 贱贱的小帅哥 阅读(86) 评论(0) 推荐(0) 编辑
摘要: <body> <form action="/servletdemo/servlet/Request2" method="post"> 用户名:<input type="text" name="username"><br/> 密码:<input type="password" name="passwo 阅读全文
posted @ 2017-03-22 16:18 贱贱的小帅哥 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 获取请求头: //获取头相关信息 private void test1(HttpServletRequest request) { //拿到指定符合的头信息 String header=request.getHeader("no-cache"); System.out.println("header 阅读全文
posted @ 2017-03-22 15:12 贱贱的小帅哥 阅读(670) 评论(0) 推荐(0) 编辑