`
文章列表
最近比较流行使用阿里巴巴druid的链接池 连接池这里有数据库密码加密的功能   在连接池配置中使用   <property name="connectionProperties" value="config.decrypt=true;config.decrypt.key=${key}" />  config.decrypt=true,表示密码通过加密  config.decrypt.key=${key} ,密码加密的key值,如果没有设置key值此参数忽略  以下是加密解密的使用   //设置密码 Strin ...
$("input:file").change(function(){ var thisObj = this; var reader = new FileReader(); reader.onload = function (e) { var data = e.target.result; //加载图片获取图片真实宽度和高度 var image = new Image(); image.onload=function(){ var width = image.width; va ...
1,编写注解类 import java.lang.annotation.Documented; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.lang.annotation.ElementType; @Target({ElementType.TYPE,ElementType.METHO ...
1,在定义变量名称时,使用实体属性和数据库列名一致,方便后续处理 2,工具类通过java反射技术编写 3,在使用数据库操作,查询时Cursor封装实体属性值,修改时实体对象转换为ContentValues 4,方法中提供两种方式转换,使用public 属性,private 属性 通过getset方法使值对象话 import java.io.Serializable; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.refle ...
import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; import java.util.Map; /** * @author zhengshijun * @date 2014-7-1 上午10:14:39 */ public class HttpURL { public String execute(String uri,Map<String,Object> pareams) throws Exception{ String res ...
需要写文件总名称加后缀 package com.properties; import java.io.IOException; import java.util.Properties; /** * * @author zhengshijun * */ public class AnalyticalSql { private static Properties properties = new Properties(); static{ try { properties.load(AnalyticalSql.class.getCla ...

jsoup -- xml文档解析

    博客分类:
  • Java
<?xml version="1.0" encoding="UTF-8"?> <message> <username>zsjdxc251</username> <list> <value>javascript</value> <value>xml</value> <value>jquery</value> <value>java</ ...
Global site tag (gtag.js) - Google Analytics