Web服务器收到客户端的http请求,会针对每一次请求,分别创建一个用于代表请求的request对象和代表响应的response对象。
分为三个部分
setStatus(int sc)//设置响应状态码
setHeader(String name,String value)//设置响应头信息
例子:
//服务器默认的编码为ISO-8859-1,它不支持中文,tomcat规定的
//告诉服务器应该使用UTF-8解析文本
response.setCharacterEncoding("UTF-8");
//告诉客户端要使用什么编码
response.setHeader("content-type", "text/html;charset=UTF-8");
//告诉服务器应该使用UTF-8解析文本,告诉客户端要使用什么编码
response.setContentType("text/html;charset=UTF-8");
//告诉客户端不使用缓存的三种方式
response.setHeader("pragma", "no-cache");
response.setHeader("cache-control", "no-cache");
response.setIntHeader("expires", 0);
2.3 设置刷新时间的两种方式
response.setIntHeader("refresh", 1);//设置1秒钟刷新一次
response.setHeader("refresh", "3;url=path");//设置三秒后跳转,path是路径
还有一个重点的代码:
sendRedirect(String location);//请求重定向
//请求重定向
response.sendRedirect(path);//path是路径
getWrite();//字符输出流
getOutputStream();//字节输出流
setCharacterEncoding(String charast);//告知服务器使用什么编码
setContextType(String type);//告知客户端用什么编码
例子:
//告诉服务器应该使用UTF-8解析文本
response.setCharacterEncoding("UTF-8");
//告诉服务器应该使用UTF-8解析文本,告诉客户端要使用什么编码
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();//得到一个字符输出流
out.write("hello");//向客户端响应文本
//响应编码字节输出流
OutputStream sos = response.getOutputStream();
sos.write("你好".getBytes());//getBytes默认编码为本地编码
实际演示:
3.1 文件下载
//文件下载
//1. 通过路径得到一个输入流
String path = this.getServletContext().getRealPath("/JDBC-1.jpg");
FileInputStream fis = new FileInputStream(path);
//2. 创建字节输出流
ServletOutputStream sos = response.getOutputStream();
//3. 得到要下载的文件名
String filename = path.substring(path.lastIndexOf("\\")+1);
//4. 设置文件名的编码
filename = URLEncoder.encode(filename, "UTF-8");//将不安全的文件名改为UTF-8格式
//5. 告知客户端要下载文件
response.setHeader("content-disposition", "attachment;filename="+filename);
response.setHeader("content-type", "image/jpeg");
//6. 执行输出操作
int len = 1;
byte[] b = new byte[1024];
while((len=fis.read(b))!=-1){
sos.write(b,0,len);
}
//7. 关闭资源
sos.close();
fis.close();
今天学习了如何学习做验证码,下面是学习的代码:
html页面代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function changeCode(){
//得到图片元素
var img = document.getElementsByTagName("img")[0];
//img.setAttribute("src","/path");//XML Dom 语法
img.src = "/path?time="+new Date().getTime();//?time是为了能够点击刷新
}
</script>
</head>
<body>
<form action="#" method="post">
用户名:<input type="text" name="userName"/><br>
密码:<input type="password" name="pwd"/><br>
验证码:<input type="text" name="code"/>
<img src="/path" onclick="changeCode()"/><a href="javascript:changeCode()" >看不清换一张</a><br>
<input type="submit" value="登录"/><br>
</form>
</body>
</html>
有两种形式,一种复杂的:
//做验证码
int width = 110;//设置宽
int height = 25;//设置高
//在内存中创建一个图像对象
BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
//创建一个画笔
Graphics g = img.getGraphics();
//给图片添加背景色
g.setColor(Color.PINK);//设置一个颜色
g.fillRect(1, 1, width-2, height-2);//填充颜色
//给边框一个色
g.setColor(Color.RED);
g.drawRect(0, 0, width-1, height-1);//设置边框的显示坐标
//设置文本样式
g.setColor(Color.BLUE);//设置字的颜色
g.setFont(new Font("宋体", Font.BOLD|Font.ITALIC, 15));//设置字的样式
//给图片添加文本
Random rand = new Random();//创建随机数对象
int position = 20;//定义位置
for (int i = 0; i < 4; i++) {
g.drawString(rand.nextInt(10)+"", position, 20);//给图片填充文本
position+=20;
}
//添加9条干扰线
for (int i = 0; i < 9; i++) {
g.drawLine(rand.nextInt(width), rand.nextInt(height), rand.nextInt(width), rand.nextInt(height));
}
//将图片对象以流的方式输出的客户端
ImageIO.write(img, "jpg", response.getOutputStream());
还有一种简单的:
ValidateCode vc = new ValidateCode(110, 25, 4, 9);
String code = vc.getCode();//得到生成的字符
vc.write(response.getOutputStream());