[java]代码库package pm_cn.itcast.request;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class RequestDemo3 extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// 会带过来 : referer: http://localhost:8080/day11/1.html
String headerValue = request.getHeader(“referer”);
response.setContentType(“text/html;charset=utf-8”);
if(headerValue==null|| !headerValue.startsWith(“http://localhost:8080”)){
// 说明是 盗链 过来的 .
response.getWriter().print(“哥们, 你是 盗链 过来的 …”);
}else{
//http://localhost:8080
// 说明 不是 盗链 过来的
response.getWriter().print(” 采访 詹姆斯 “);
}
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:http://bianchenghao.cn/10870.html