简易工具类笔记

1. js读写cookie

2. java获取ip

3. commons-lang.jar中的工具类简析

4.下载


1. js读写cookie

/* 读写cookie函数定义 begin */
function getCookie(c_name) {
	if (document.cookie.length > 0) {
		c_start = document.cookie.indexOf(c_name + "=");
		if (c_start != -1) {
			c_start = c_start + c_name.length + 1;
			c_end = document.cookie.indexOf(";", c_start);
			if (c_end == -1)
				c_end = document.cookie.length;
			return decodeURIComponent(document.cookie.substring(c_start, c_end));
		}
	}
	return "";
}
function setCookie(c_name, value, expiredays) {
	var exdate = new Date();
	exdate.setDate(exdate.getDate() + expiredays);
	document.cookie = c_name + "=" + encodeURIComponent(value) + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString());
}
/* 读写cookie函数定义 end */

2. java获取ip

public static String getIpAddr(HttpServletRequest request) {  
    String ip = request.getHeader("x-forwarded-for");  
    if(ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {  
        ip = request.getHeader("Proxy-Client-IP");  
    } else {
        if (ip.indexOf(",") != -1) {  
            ip = ip.substring(0,ip.indexOf(","));  
        }  
    }  
    if(ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {  
        ip = request.getHeader("WL-Proxy-Client-IP");  
    }  
    if(ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {  
        ip = request.getRemoteAddr();  
    }  
    return ip;  
}

3. commons-lang.jar中的工具类简析

3.1 StringUtil类

    isEmpty(String str)方法。null和空字符串""返回true,其他返回false。

    isNotEmpty(String str)方法。与isEmpty(String str)返回结果相反。

    isBlank(String str)方法。null、空字符串""和只包含空格的字符串"  "返回true,其他返回false。

    isNotBlank(String str)方法。与isBlank(String str)方法返回结果相反。

3.2 ExceptionUtils类

    getFullStackTrace(Throwable t)方法。获得格式化的完整异常堆栈字符串。

    ExceptionUtils类还提供getMessage(Throwable t)等多个实用方法。


4.下载

	//下载附件
	public void downloadAtt(HttpServletRequest request, HttpServletResponse response) throws IOException{
		response.reset();
		response.setHeader("Content-Disposition", "attachment;filename=\"" + new String((name.getBytes(), "iso8859-1") + "\"");
		response.setContentType("application/x-download;charset=UTF-8");
		ServletOutputStream out = response.getOutputStream();
		out.write(new byte[]{});
		out.flush();
		out.close();
	}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值