摘要:
public class RSAUtils { /** * 加密算法RSA */ public static final String KEY_ALGORITHM = "RSA"; /** * 签名算法 */ public static final String SIGNATURE_ALGORITH 阅读全文
摘要:
MySQL replace into 有三种形式: 1. replace into tbl_name(col_name, ...) values(...) 2. replace into tbl_name(col_name, ...) select ... 3. replace into tbl_n 阅读全文
摘要:
public static String calendarMethod(String time, int year, int month, int day, int hour, int min, int sec) { //时分秒默认是 00:00:00 SimpleDateFormat sdate 阅读全文
摘要:
public class test { public static void main(String[] args) { Map<String,Object> map = new HashMap<String,Object>(); map.put("test1","test1"); map.put( 阅读全文