JSON对象是一个无序的"名称/值"对的集合它开始于“{”,结束于“}”。每一个属性名和值间用“:”提示,属性间用“,”分隔。一个数组开始于"[",结束于"]",值之间用","分隔。数组和List转换为JSON用JSONArray.fromObjectMap、bean、beans(保存在一个List...
分类:
Web程序 时间:
2015-08-05 12:04:21
阅读次数:
119
var jsonArray=[{"name":"张三","password":"123456"},{"name":"李四","password":"123456"}]; $.each(obj,function(n,value){n:数组中的位置;value.name:张三、李四value.passw...
分类:
编程语言 时间:
2015-08-05 10:09:27
阅读次数:
139
今天使用了SpringMVC+mybatis传值。从controller中传到service中。可是由于版本问题参数中不能有大写和下划线,在service中只能用String 来接受json字符串。接到后就用到了这个。public String uploadPcmSupplyInfoFromEFut...
分类:
Web程序 时间:
2015-08-04 19:01:05
阅读次数:
229
http://www.cnblogs.com/linjiqin/archive/2011/09/19/2181408.htmlimport net.sf.json.JSONArray;import net.sf.json.JSONException;import net.sf.json.JSONOb...
分类:
编程语言 时间:
2015-08-04 13:21:56
阅读次数:
152
我这里做的比较简单,就点击导出按钮,到后台写一个导出地址 jsp代码如下 ?<%@?page?import="mc.global.demo.Export"?%>
<%@?page?import="java.util.List"?%>
<%@?page?import="net.sf.json.JSONArray...
分类:
其他好文 时间:
2015-08-03 11:44:06
阅读次数:
130
1.JSONArray->JSONObject->String
JSONObject jsonObject= JSONArray.getJSONObject("test");String str = jsonObject.getString("name");
2.String->JSONArray/JSONObject
String str="";
JSONObje...
分类:
Web程序 时间:
2015-08-01 10:03:58
阅读次数:
112
1.JAR包简介要使程序可以运行必须引入JSON-lib包,JSON-lib包同时依赖于以下的JAR包:commons-lang.jarcommons-beanutils.jarcommons-collections.jarcommons-logging.jarezmorph.jarjson-lib...
分类:
编程语言 时间:
2015-07-28 23:04:17
阅读次数:
180
- (IBAction)jsonSystemButtonDidClicked:(UIButton *)sender { self.JSONArray = [NSMutableArray array]; // 1、拿到 json 文件的路径
NSString *path = [[NSBundle mainBundle] pathForResource:@"student" ofTy...
分类:
Web程序 时间:
2015-07-20 19:37:50
阅读次数:
98
@property (nonatomic, strong) NSMutableArray *JSONArray;懒加载- (NSMutableArray *)JSONArray
{
if (_JSONArray == nil) {
self.JSONArray = [NSMutableArray array];
}
return _JSONArray;
}-...
分类:
Web程序 时间:
2015-07-20 19:31:35
阅读次数:
120
import org.json.JSONArray;import org.json.JSONException;import org.json.JSONObject;import android.content.Context; public void allInfoFromJson(Strin.....
分类:
移动开发 时间:
2015-07-14 10:00:34
阅读次数:
144