request ,response的一些用法转载

来源:互联网 发布:耽美小说网站 知乎 编辑:程序博客网 时间:2024/06/14 22:30
1
2
3
4
5
6
7
8
9
10
//获取提交地址
request.getRequestURI();
//获取提交内容
request.getQueryString();
//获取客户端地址(浏览器)
request.getRemoteAddr();
//获取客户端端口(浏览器)
request.getRemotePort();
//获取提交方法(GET,POST or .....)
request.getMethod();

获得提交内容体

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//获得某个提交内容参数
//http://xxx/xx?username=flx
String username = request.getParameter("username");
System.out.println(username);
 
 
//获得一些同名的提交内容参数
//http://xxx/xx?username=flx&username=lhm
String values[] = request.getParameterValues("username");
for(inti=0;values!=null&& i<values.length;i++){
    System.out.println(values[i]);
}
 
//获得所有所有提交参数的集合(不适合具有同名过个参数的)
Enumeration e = request.getParameterNames();
while(e.hasMoreElements()){
    String name = (String) e.nextElement();
    String value = request.getParameter(name);
    System.out.println(name +"=" + value);
}
 
//获得所有参数集合,适合同名参数
//http://xxx/xx?username=flx&password=123
Map<String,String[]> map = request.getParameterMap();
// map.keyset()    Set set =   map.entrySet()
for(Map.Entry<String, String[]> entry : map.entrySet()){
    String name = entry.getKey();
    values = entry.getValue();
    for(String value : values){
        System.out.println(name +"=" + value);
    }
}

乱码之问题

?
1
2
3
4
5
6
7
8
//获取的内容默认都是"iso8859-1"编码
String username = request.getParameter("username");
//首先以当前编码获取原始字节,然后再转成目标编码
username = new String(username.getBytes("iso8859-1"),"UTF-8");
 
//也可以手动设置编码
request.setCharacterEncoding("UTF-8");
String username = request.getParameter("username");

使用org.apache.commons.beanutils对bean的快速填充

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//取得提交的数据集合
Map map = request.getParameterMap();
//这是一个存储提交数据的bean
User user = new User();
 
//org.apache.commons.beanutils
//beanutils的一个转换工具,这里注册一个日期类型的转换
ConvertUtils.register(newConverter(){ //Converter接口
    //实现了这个方法,ConvertUtils就知道如何转换Date类型了
    publicObject convert(Class type, Object value) {
        //先判断是否为空
        if(value==null|| value.equals("")){
            returnnull;
        }
        //判断是否为字符串
        if(!(valueinstanceof String)){
            thrownew ConversionException("只支持string类型的转换!!");
        }
        String s = (String) value; 
        //将日期字符串格式化为日期类型
        SimpleDateFormat sdf =new SimpleDateFormat("yyyy-MM-dd");
        try{
            returnsdf.parse(s);
        }catch (ParseException e) {
            thrownew ConversionException(s +"不是一个合法的日期值");
        }
    }
}, Date.class);
 
//开始将集合向bean里面填充map
BeanUtils.populate(user, map);

Response相关

设置浏览器缓存

?
1
2
3
4
5
6
7
8
9
10
//response体内的参数,用来说明缓存的设置
//response.setHeader("content-type", "image/jpeg");
//Expires: -1
//Cache-Control: no-cache 
//Pragma: no-cache  
 
//设置浏览器不缓存数据
response.setDateHeader("Expires", -1);
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");

输出文本

?
1
2
3
4
5
6
7
8
//设置编码格式的所有方法
response.setCharacterEncoding("UTF-8");
response.setHeader("content-type","text/html;charset=UTF-8");
response.setContentType("text/html;charset=UTF-8");
response.getWriter().write("<meta http-equiv='content-type' content='text/html;charset=UTF-8'>");
 
//输出
response.getWriter().write("输出内容");

输出文件

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//获得真实路径
String path = this.getServletContext().getRealPath("/download/日本妞.jpg");
//从真实路径获得文件名
String filename = path.substring(path.lastIndexOf("\\")+1);
//设置返回体,指明文件类型
response.setHeader("content-disposition","attachment;filename="+ URLEncoder.encode(filename, "UTF-8"));
//设置输入流
FileInputStream in =new FileInputStream(path);
 
//模板代码,从输入流读取并向输出流输出
int len = 0;
byte buffer[] = new byte[1024];
OutputStream out = response.getOutputStream();
while((len=in.read(buffer))>0){
    out.write(buffer,0, len);
}
in.close();

页面跳转

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//1)  redirect 方式
response.sendRedirect("/a.jsp");
//页面的路径是相对路径。sendRedirect可以将页面跳转到任何页面,不一定局限于本web应用中,如:
response.sendRedirect("http://www.ycul.com");
 
//跳转后浏览器地址栏变化。
//这种方式要传值出去的话,只能在url中带parameter或者放在session中,无法使用request.setAttribute来传递。
 
//2) forward方式
RequestDispatcher dispatcher = request.getRequestDispatcher("/a.jsp");
dispatcher .forward(request, response);
//页面的路径是相对路径。forward方式只能跳转到本web应用中的页面上。
 
//跳转后浏览器地址栏不会变化。
//使用这种方式跳转,传值可以使用三种方法:url中带parameter,session,request.setAttribute

一个验证码图片输出的模板

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Random;
 
import javax.imageio.ImageIO;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
//向浏览器输出随机图片
public class ResponseDemo extendsHttpServlet {
 
    //设置图片的大小
    privatestatic final int WIDTH = 130;
    privatestatic final int HEIGHT = 30;
 
    publicvoid doGet(HttpServletRequest request, HttpServletResponse response)
            throwsServletException, IOException {
 
        //首先创建一个图片对象
        BufferedImage image =new BufferedImage(WIDTH,HEIGHT,BufferedImage.TYPE_INT_RGB);
        //取得画板
        Graphics g = image.getGraphics();
 
        //设置背景
        setBackground(g);
 
        //设置边框
        setBorder(g);
 
        //画干扰线
        drawRandomLine(g);
 
        //写随机数
        drawRandomNum((Graphics2D) g);
 
        //设置缓存,避免刷新图片时,浏览器调用缓存图片
        //response体内的参数,用来说明缓存的设置
        //response.setHeader("content-type", "image/jpeg");
        //Expires: -1
        //Cache-Control: no-cache 
        //Pragma: no-cache  
 
        //设置浏览器不缓存数据
        response.setDateHeader("Expires", -1);
        response.setHeader("Cache-Control","no-cache");
        response.setHeader("Pragma","no-cache");
 
        //设置返回体,超媒体格式为图片格式
        response.setContentType("image/jpeg");
        //输出
        OutputStream out = response.getOutputStream();
        ImageIO.write(image,"jpg", out);  
    }
 
    //设置背景
    privatevoid setBackground(Graphics g) {
        //设置颜色(白色)
        g.setColor(Color.WHITE);
        //填充矩形
        g.fillRect(0,0, WIDTH, HEIGHT);
    }
    //设置边框
    privatevoid setBorder(Graphics g) {
        //设置颜色(蓝色)
        g.setColor(Color.BLUE);
        //矩形描边,边得宽度是向外扩展的
        g.drawRect(1,1, WIDTH-2, HEIGHT-2);
 
    }
    //画干扰线
    privatevoid drawRandomLine(Graphics g) {
        //设直线条颜色(绿色)
        g.setColor(Color.GREEN);
        //循环5次,也就是画五个线条
        for(inti=0;i<5;i++){
            //都是随机
            //设置线段的其实点
            intx1 = new Random().nextInt(WIDTH);
            inty1 = new Random().nextInt(HEIGHT);
            //设置线段的结束点
            intx2 = new Random().nextInt(WIDTH);
            inty2 = new Random().nextInt(HEIGHT);
            //画线
            g.drawLine(x1, y1, x2, y2);
        }
    }
 
    //汉子验证码,汉字Unicode码得范围是[\u4e00-\u9fa5]
    privatevoid drawRandomNum(Graphics2D g) {
        //设置字体颜色(红色)
        g.setColor(Color.RED);
        //设置字体样式
        g.setFont(newFont("宋体",Font.BOLD,20));
 
 
 
        //常见的汉字,排除了生僻字
        String base ="\u7684\u4e00\u4e86\u662f\u6211\u4e0d\u5728\u4eba\u4eec\u6709\u6765\u4ed6\u8fd9\u4e0a\u7740\u4e2a\u5730\u5230\u5927\u91cc\u8bf4\u5c31\u53bb\u5b50\u5f97\u4e5f\u548c\u90a3\u8981\u4e0b\u770b\u5929\u65f6\u8fc7\u51fa\u5c0f\u4e48\u8d77\u4f60\u90fd\u628a\u597d\u8fd8\u591a\u6ca1\u4e3a\u53c8\u53ef\u5bb6\u5b66\u53ea\u4ee5\u4e3b\u4f1a\u6837\u5e74\u60f3\u751f\u540c\u8001\u4e2d\u5341\u4ece\u81ea\u9762\u524d\u5934\u9053\u5b83\u540e\u7136\u8d70\u5f88\u50cf\u89c1\u4e24\u7528\u5979\u56fd\u52a8\u8fdb\u6210\u56de\u4ec0\u8fb9\u4f5c\u5bf9\u5f00\u800c\u5df1\u4e9b\u73b0\u5c71\u6c11\u5019\u7ecf\u53d1\u5de5\u5411\u4e8b\u547d\u7ed9\u957f\u6c34\u51e0\u4e49\u4e09\u58f0\u4e8e\u9ad8\u624b\u77e5\u7406\u773c\u5fd7\u70b9\u5fc3\u6218\u4e8c\u95ee\u4f46\u8eab\u65b9\u5b9e\u5403\u505a\u53eb\u5f53\u4f4f\u542c\u9769\u6253\u5462\u771f\u5168\u624d\u56db\u5df2\u6240\u654c\u4e4b\u6700\u5149\u4ea7\u60c5\u8def\u5206\u603b\u6761\u767d\u8bdd\u4e1c\u5e2d\u6b21\u4eb2\u5982\u88ab\u82b1\u53e3\u653e\u513f\u5e38\u6c14\u4e94\u7b2c\u4f7f\u5199\u519b\u5427\u6587\u8fd0\u518d\u679c\u600e\u5b9a\u8bb8\u5feb\u660e\u884c\u56e0\u522b\u98de\u5916\u6811\u7269\u6d3b\u90e8\u95e8\u65e0\u5f80\u8239\u671b\u65b0\u5e26\u961f\u5148\u529b\u5b8c\u5374\u7ad9\u4ee3\u5458\u673a\u66f4\u4e5d\u60a8\u6bcf\u98ce\u7ea7\u8ddf\u7b11\u554a\u5b69\u4e07\u5c11\u76f4\u610f\u591c\u6bd4\u9636\u8fde\u8f66\u91cd\u4fbf\u6597\u9a6c\u54ea\u5316\u592a\u6307\u53d8\u793e\u4f3c\u58eb\u8005\u5e72\u77f3\u6ee1\u65e5\u51b3\u767e\u539f\u62ff\u7fa4\u7a76\u5404\u516d\u672c\u601d\u89e3\u7acb\u6cb3\u6751\u516b\u96be\u65e9\u8bba\u5417\u6839\u5171\u8ba9\u76f8\u7814\u4eca\u5176\u4e66\u5750\u63a5\u5e94\u5173\u4fe1\u89c9\u6b65\u53cd\u5904\u8bb0\u5c06\u5343\u627e\u4e89\u9886\u6216\u5e08\u7ed3\u5757\u8dd1\u8c01\u8349\u8d8a\u5b57\u52a0\u811a\u7d27\u7231\u7b49\u4e60\u9635\u6015\u6708\u9752\u534a\u706b\u6cd5\u9898\u5efa\u8d76\u4f4d\u5531\u6d77\u4e03\u5973\u4efb\u4ef6\u611f\u51c6\u5f20\u56e2\u5c4b\u79bb\u8272\u8138\u7247\u79d1\u5012\u775b\u5229\u4e16\u521a\u4e14\u7531\u9001\u5207\u661f\u5bfc\u665a\u8868\u591f\u6574\u8ba4\u54cd\u96ea\u6d41\u672a\u573a\u8be5\u5e76\u5e95\u6df1\u523b\u5e73\u4f1f\u5fd9\u63d0\u786e\u8fd1\u4eae\u8f7b\u8bb2\u519c\u53e4\u9ed1\u544a\u754c\u62c9\u540d\u5440\u571f\u6e05\u9633\u7167\u529e\u53f2\u6539\u5386\u8f6c\u753b\u9020\u5634\u6b64\u6cbb\u5317\u5fc5\u670d\u96e8\u7a7f\u5185\u8bc6\u9a8c\u4f20\u4e1a\u83dc\u722c\u7761\u5174\u5f62\u91cf\u54b1\u89c2\u82e6\u4f53\u4f17\u901a\u51b2\u5408\u7834\u53cb\u5ea6\u672f\u996d\u516c\u65c1\u623f\u6781\u5357\u67aa\u8bfb\u6c99\u5c81\u7ebf\u91ce\u575a\u7a7a\u6536\u7b97\u81f3\u653f\u57ce\u52b3\u843d\u94b1\u7279\u56f4\u5f1f\u80dc\u6559\u70ed\u5c55\u5305\u6b4c\u7c7b\u6e10\u5f3a\u6570\u4e61\u547c\u6027\u97f3\u7b54\u54e5\u9645\u65e7\u795e\u5ea7\u7ae0\u5e2e\u5566\u53d7\u7cfb\u4ee4\u8df3\u975e\u4f55\u725b\u53d6\u5165\u5cb8\u6562\u6389\u5ffd\u79cd\u88c5\u9876\u6025\u6797\u505c\u606f\u53e5\u533a\u8863\u822c\u62a5\u53f6\u538b\u6162\u53d4\u80cc\u7ec6";
 
 
 
 
        intx = 10;
        for(inti=0;i<4;i++){
            String ch = base.charAt(newRandom().nextInt(base.length()))+"";
            //写入字之前,设置好旋转,按弧度单位旋转
            intdegree = new Random().nextInt()%30;//与30取模,就是限定了范围是-30~+30
            //旋转(弧度,x点,y点)
            g.rotate(degree*Math.PI/180, x,20);
            //画字符(字符,x点,y点)
            g.drawString(ch, x,20);
            //画完之后,别忘了把画板的旋转角度恢复
            g.rotate(-degree*Math.PI/180, x,20);
            //x坐标增加,不然后面的字会重叠
            x = x+30;
        }
    }
 
    publicvoid doPost(HttpServletRequest request, HttpServletResponse response)
            throwsServletException, IOException {
        doGet(request, response);
    }
 
}
原创粉丝点击