- 博客(10)
- 收藏
- 关注
转载 判断字符串编码类型
java 种里判断字符串是iso-8859-1还是gb2312,utf-8,gbk等System.out.println(java.nio.charset.Charset.forName("GB2312").newEncoder().canEncode("张三")); System.out.println(java.nio.charset.Charset.forName("ISO-8859-1")
2016-11-23 09:59:22 443
原创 Eclipse JAVA可视化插件安装
安装包:eclipse版本:eclipse-jee-helios-SR2(3.6.1) EMF:emf-xsd-Update-2.12.0.zip GEF:GEF-Update-3.6.2.zip VE:VE-Update-1.5.0.zip 安装说明:Visual Editor必须安装其依赖的另外两个插件:EMF和GEF; 第一步:EMF安装 ![这里写图
2016-11-09 14:45:26 353
转载 图片与Base64字符串相互转化
/** * 图片转化成base64字符串 * @param imgFilePath 待处理的图片 * @return */ public static String GetImageStr(String imgFilePath) { //将图片文件转化为字节数组字符串,并对其进行Base64编码处理 InputStream in = null; byte[]
2016-09-23 10:15:09 2439
转载 HTML页面使用JS获取地址栏参数
function GetQueryString(name) { var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if(r!=null)return unescape(r[2]); return null;
2016-09-23 10:10:46 4369
原创 SpringMVC applicationContext.xml配置
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org
2016-09-14 10:47:52 190
原创 SpringMVC web.xml配置
<?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/
2016-09-14 10:41:15 266
原创 SpringMVC servlet.xml配置
SpringMVC xxx-servlet.xml配置<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="htt
2016-09-14 10:27:07 207
转载 获取客户端IP地址方法
获取网页客户端的IP地址的方法是:request.getRemoteAddr(),这种方法在大部分情况下都是有效的。但是在通过了Apache,Squid等反向代理软件就不能获取到客户端的真实IP地址了; 经过代理以后,由于在客户端和服务之间增加了中间层,因此服务器无法直接拿到客户端的 IP,服务器端应用也无法直接通过转发请求的地址返回给客户端。但是在转发请求的HTTP头信息中,增加了X-FO
2015-08-26 16:15:02 487
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人