1.完成重定向
重定向代码实现
1.重定向资源跳转的方法
response.setStatus(302);
response.setHeader("location","/xxx/aaa");
2.简单的方法
response.sendRedirect("/xxx/aaa");
重定向特点数据(redirect)
1.浏览器地址栏发生变化
2.重定向可以访问其他站点的资源
3.重定向是两次请求,不能使用request对象来共享数据
转发的特点(forward)
1.浏览器地址不发生变化
2.转发只能是当前服务器下的资源
3.转发请求只有一次,可以通过request对象共享
路径写法
1.路径分类1.相对路径: 通过相对路径不可以确定唯一资源不以/开头如: ./index.html2.绝对路径: 通过绝对路径可以确定唯一资源以/开头如:http://localhost/xyz/xxx /xyz/xxx
2.服务器输出字符数据到浏览器
经典方式
response.setHeader("content-type","text/html;charset=utf-8");
PrintWriter pw = response.getWriter();
pw.write("你好 World!");
简单方式
response.setContentType("text/html;charset=utf-8");
PrintWriter pw = response.getWriter();
pw.write("你好 World!");
3.服务器输出字节数据到浏览器
response.setContentType("text/html;charset=utf-8");
ServletOutputStream sos = response.getOutputStream();
sos.write("hello-你好".getBytes());
4.验证码
int width = 100;
int height = 50;
BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();
g.setCollor(Color.PINK);
g.fillRect(0,0,width,height);
g.setCollor(Color.BLUE);
g.drawRect(0,0,width-1,height-1);
String str="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghikjlmnopqrstuvwxyz._012345678";
Random ran = new Random();
for(int i=0;i<=4;i++){int index = ran.nextInt(str.length());char ch = str.charAt(index);g.drawString(ch,width/5*i,height/2);}
for(int i=0;i<=5;i++){g.setColor(Color.Green);int x1 = ran.nextInt(width);int x2 = ran.nextInt(width);int y1 = ran.nextInt(height);int y2 = ran.nextInt(height);g.drawLine(x1,y1,x2,y2);
}
ImageIO.write(image,"jpg",response.getOutputStream());