一、HttpServletResponse常见应用——生成验证码1.1、生成随机图片用作验证码 生成图片主要用到了一个BufferedImage类, 生成随机图片范例: 1 package gacl.response.study; 2 3 import java.awt.Color; 4 im...
分类:
编程语言 时间:
2014-07-11 19:17:57
阅读次数:
284
定义String.Format是将指定的String类型的数据中的每个格式项替换为相应对象的值的文本等效项.(1)string p1="xiaomeng";string p2="xiaobei";Response.Write(String.Format("Hello {0},I'm {1}",p1,...
分类:
其他好文 时间:
2014-07-09 22:39:53
阅读次数:
249
Web服务器收到客户端的http请求,会针对每一次请求,分别创建一个用于代表请求的request对象、和代表响应的response对象。request和response对象即然代表请求和响应,那我们要获取客户机提交过来的数据,只需要找request对象就行了。要向客户机输出数据,只需要找resp.....
分类:
编程语言 时间:
2014-07-09 16:49:46
阅读次数:
262
远程调用内核接口的封装类(RCKObjs), RCK 包含 Application, Function, Connection, Command, Response 和 Fields 六大类。...
分类:
Web程序 时间:
2014-07-09 10:28:56
阅读次数:
273
QR码(Quick Response Code, 快速响应码)属于矩阵式二维码中的一种,由DENSO(日本电装)公司开发,由JIS和ISO将其标准化。
QR码分为两种模式:模式1、模式2;其中,模式1对应旧的标准,目前普遍采用的是模式2,即,新的开放式标准;
QR码的基本特征:
1、编码字符集:
(1)数字型数据:(数字0--9)
(2)字母数字型数据:(数字0--9;大写字母A-...
分类:
其他好文 时间:
2014-07-08 15:43:36
阅读次数:
415
response.setContentType("text/html;charset=utf-8");response.setCharacterEncoding("utf-8");//获取绝对路径.通过ervletContext()String path= this.getServletContex...
分类:
其他好文 时间:
2014-07-08 00:42:25
阅读次数:
251
//pbak是要检查是否为空的文件夹路径 if (Directory.GetDirectories(pbak).Length > 0 || Directory.GetFiles(pbak).Length > 0) { Response.Write(""); }
分类:
其他好文 时间:
2014-07-06 22:13:49
阅读次数:
629
public class servletDemo1 extends HttpServlet { int i=0; public void doGet(HttpServletRequest request, HttpServletResponse response) ...
分类:
编程语言 时间:
2014-07-06 21:30:28
阅读次数:
212
有时候在操作Session时,系统会抛出如下异常java.lang.IllegalStateException: Cannot create a session after the response has been committed原因1:Session 的创建语句:HttpSession se...
分类:
编程语言 时间:
2014-07-06 20:38:38
阅读次数:
298
//将NSData转化为NSString NSString* str = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];//将NSString 转化为NSData(NSString.h)- (NSDat....
分类:
移动开发 时间:
2014-07-05 22:14:47
阅读次数:
474