- Aug 27 Tue 2019 15:05
-
html直接列印頁面的好方法
- Oct 26 Wed 2016 22:33
-
git 指令工作上實作
- Jul 04 Mon 2016 00:31
-
Map.Entry<>及for-each循環中獲取keys或values。
在工作中有時會看見同事這麼用:
public static Map<String,List<String>> gatherCode ;
static{
gatherCode = new HashMap<String,List<String>>();
List<String> A1E = new ArrayList<String>(){
{
add("A11");
add("A12");
}
};
public static Map<String,List<String>> gatherCode ;
static{
gatherCode = new HashMap<String,List<String>>();
List<String> A1E = new ArrayList<String>(){
{
add("A11");
add("A12");
}
};
- Jul 02 Sat 2016 02:36
-
Json Object to String 照原本物件呈現不亂排@JsonPropertyOrder 及 ObjectMapper中不自動將屬性大寫轉小寫
有時要組Json 做加解密時常常會因為物件轉Json時的String 其物件內的屬性排序會亂排
則這時再透過ObjectMapper轉換前其Object物件內需加入@JsonPropertyOrder注入
則這時再透過ObjectMapper轉換前其Object物件內需加入@JsonPropertyOrder注入
- Jun 29 Wed 2016 17:26
-
ArrayList VS Vector In Java
- Jun 24 Fri 2016 10:38
-
mapper.readValue(responseT, WxRs.class);
- Jun 24 Fri 2016 10:30
-
SHA256 加密後 私鑰加密
String encryptSha256Data = this.eccrypt(JsonUtil.objectToSting(data));
RSAPrivateKey rsaPrivateKey = this.getPrivateKey(wxPublicKey);
String encryptRSAData = this.encrypt(rsaPrivateKey, encryptSha256Data.getBytes());
- Jun 24 Fri 2016 09:31
-
objectMapper.readTree 將json字串轉為 node
- May 02 Mon 2016 15:23
-
形容詞子句(限定和非限定) , 同位語及分詞片語與分詞構句(紀錄)
- Apr 11 Mon 2016 15:36
-
遠端看log 使用 Putty的一些常用指令
- Feb 18 Thu 2016 14:27
-
maven好用指令 可略過test去buld pom檔
- Jan 20 Wed 2016 10:31
-
Jquery 紀錄($.extend和load(url,data,function(response,status,xhr)) 及typeof (javascript) )
load(url,data,function(response,status,xhr))
參考網站:http://www.w3school.com.cn/jquery/ajax_load.asp
參考網站:http://www.w3school.com.cn/jquery/ajax_load.asp