Gson是一种对象的解析json,很好用,介绍一个网站http://json.parser.online.fr/可以帮我们看一个字符串是不是Json
对于Json文件
{
"id" : "3232",
"data" : {
"data1" : {
"name" : "xiaoming",
"age" : "12"
}
}
}
如果...
分类:
其他好文 时间:
2014-07-18 22:37:26
阅读次数:
288
1.Iterable接口在java.lang包中;Iterator接口在java.util包中2.Iterable中只有一个方法,那就是返回一个Iterator迭代器:Iterator iterator() 而Iterator中有关于迭代器的核心功能,next(),hasNext(),remove(...
分类:
编程语言 时间:
2014-07-18 19:06:45
阅读次数:
4190
class Solution {public: ListNode *removeNthFromEnd(ListNode *head, int n) { if (head == NULL) return NULL; ListNode* pre = NULL; ...
分类:
其他好文 时间:
2014-07-18 18:24:55
阅读次数:
209
Since no order requirement, we can simply swap the target value to the last non-target-value in the array - if the last non-target-value is not behind...
分类:
其他好文 时间:
2014-07-18 17:36:41
阅读次数:
192
接口Map 一、Map功能 1.添加 put(K key, V value) putAll(Map); 2.删除 clear() remove(Object key); 返回对应的值 3.判断 containsKey(Object key) containsValue(Object value) i...
分类:
其他好文 时间:
2014-07-18 15:06:12
阅读次数:
223
The key of this problem is about details especially boundary conditions.class Solution {public: ListNode *deleteDuplicates(ListNode *head) { ...
分类:
其他好文 时间:
2014-07-18 14:36:54
阅读次数:
189
In an attempt to remove duplicate elements from list, I go to the lengths to take advantage of methods in the java api. After investiagting the document of java api, the result is so satisfying that...
分类:
编程语言 时间:
2014-07-18 14:02:00
阅读次数:
282
Follow up for "Remove Duplicates":What if duplicates are allowed at mosttwice?For example,Given sorted array A =[1,1,1,2,2,3],Your function should ret...
分类:
其他好文 时间:
2014-07-17 22:24:40
阅读次数:
216
// remove instances with missing class Instances newData = new Instances(data); newData.deleteWithMissingClass(); m_structure = new Instance...
分类:
其他好文 时间:
2014-07-17 22:19:19
阅读次数:
332
创建软件RAID的指令是mdadm,允许将任何块设备做成RAID。mdadm是一个模式化的命令,有如下几种工作模式:创建模式:Create对应的选项:-C或--create管理模式:Manage对应的选项:--add、--fail、--remove监控模式:Monitor对应的选项:-F或--monitor增长模式:Grow对应的选项:..
分类:
其他好文 时间:
2014-07-17 15:35:18
阅读次数:
350