CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - json
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - json - List
[
.net
]
一个ASP的生成JSON数据的类
DL : 0
一个ASP的生成JSON数据的类
Update
: 2009-08-25
Size
: 1.11kb
Publisher
:
evio@vip.qq.com
[
Other
]
json-c-0.9
DL : 0
好用的C语言解析 Json
Update
: 2010-10-12
Size
: 332.96kb
Publisher
:
ybpcn@163.com
[
Program doc
]
JSON操作
DL : 0
JSON(JavaScript Object Notation)是基于JavaScript一个子集的一种轻量级的数据交换格式。这种格式既易于人阅读和编写,同时也易于机器解析和生成。JSON采用完全独立于语言的文本格式,但是也使用了类C语言的语法。Zend Framework也提供了对JSON的支持,使用Zend Framework中的Zend_Json组件可以实现PHP对象与JSON对象之间的转换。
Update
: 2010-11-27
Size
: 59.2kb
Publisher
:
cbwindboy
[
SourceCode
]
JSON-C库源码
DL : 0
JSON-C库源码
Update
: 2011-11-08
Size
: 54.44kb
Publisher
:
zidanefr33
[
.NET/ASPX
]
json
DL : 0
json详细资料。相当珍贵
Update
: 2011-12-22
Size
: 233kb
Publisher
:
40321700@qq.com
[
SourceCode
]
android JSON解析
DL : 0
android 解析使用JSON
Update
: 2012-02-01
Size
: 23.5kb
Publisher
:
1049617070@qq.com
[
J2ME
]
json-js
DL : 0
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。它基于JavaScript(Standard ECMA-262 3rd Edition - December 1999)的一个子集。 JSON采用完全独立于语言的文本格式,但是也使用了类似于C语言家族的习惯(包括C, C++, C#, Java, JavaScript, Perl, Python等)。这些特性使JSON成为理想的数据交换语言。易于人阅读和编写,同时也易于机器解析和生成。
Update
: 2012-05-12
Size
: 20.79kb
Publisher
:
381177452@qq.com
[
JSP/Java
]
json-rpc-java-1.0
DL : 0
json-rpc是和DWR类似的ajax-rpc实现。我比较细化,因为他很简单,而且只作rpc。如果你要实现自己特定的rpc的话,可以参考一下他。-json- rpc and DWR is similar to the ajax- rpc achieve. I am more details, because he was very simple, but only rpc. If you want to realize their own specific rpc, then he can take a look.
Update
: 2025-02-17
Size
: 625kb
Publisher
:
一农
[
JSP/Java
]
json
DL : 0
JSON使用源码,对于AJAX与服务器数据交换,采用JSON作为数据传输格式是个不错的选择-JSON using the source code for the AJAX data exchange with the server using JSON as a data transfer format is a good choice
Update
: 2025-02-17
Size
: 43kb
Publisher
:
xinsoft
[
JSP/Java
]
json
DL : 0
json的JAVA实现,用于根据JAVA对象生成json string-JAVA realize the json for the object in accordance with JAVA to generate json string
Update
: 2025-02-17
Size
: 44kb
Publisher
:
chenyl
[
Disk Tools
]
JSON+delphi+library
DL : 0
json delphi component
Update
: 2025-02-17
Size
: 13kb
Publisher
:
[
xml-soap-webservice
]
json
DL : 0
WEB Service高效传输格式之一的JSON的开源实现,并附有测试-WEB Service efficient transmission format, one of the open source JSON to achieve, together with test
Update
: 2025-02-17
Size
: 8kb
Publisher
:
luborong
[
VC/MFC
]
JSON
DL : 0
介绍:JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。它基于JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999的一个子集。 JSON采用完全独立于语言的文本格式,但是也使用了类似于C语言家族的习惯(包括C, C++, C#, Java, JavaScript, Perl, Python等)。这些特性使JSON成为理想的数据交换语言-Introduction: JSON (JavaScript Object Notation) is a lightweight data interchange format. Easy to read and prepare. Also easy to machine parsing and generation. It is based on the JavaScript Programming Language, Standard ECMA-262 3rd Edition- December 1999 a subset. JSON using completely independent of the language of the text format, but also used language similar to C family habits (including C, C++, C#, Java, JavaScript, Perl, Python, etc.). These characteristics make JSON an ideal data exchange language
Update
: 2025-02-17
Size
: 50kb
Publisher
:
杉杉
[
JSP/Java
]
Json
DL : 0
JSON(javascript) object creator and examples-JSON (javascript) object creator and examples
Update
: 2025-02-17
Size
: 17kb
Publisher
:
brian
[
JSP/Java
]
json-c-0.7
DL : 0
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。它基于JavaScript(Standard ECMA-262 3rd Edition - December 1999)的一个子集。 JSON采用完全独立于语言的文本格式,但是也使用了类似于C语言家族的习惯(包括C, C++, C#, Java, JavaScript, Perl, Python等)。这些特性使JSON成为理想的数据交换语言。[编辑本段]JSON与XML的比较 ◆可读性 JSON和XML的可读性可谓不相上下,一边是建议的语法,一边是规范的标签形式,很难分出胜负。 ◆可扩展性 XML天生有很好的扩展性,JSON当然也有,没有什么是XML能扩展,JSON不能的。 ◆编码难度 XML有丰富的编码工具,比如Dom4j、JDom等,JSON也有json.org提供的工具,但是JSON的编码明显比XML容易许多,即使不借助工具也能写出JSON的代码,可是要写好XML就不太容易了。 ◆解码难度 XML的解析得考虑子节点父节点,让人头昏眼花,而JSON的解析难度几乎为0。这一点XML输的真是没话说。 -The JavaScript Object Notation (JSON) is a simple and lightweight data interchange format. This project provides libraries for manipulating JSON objects for various languages. For more information on JSON, visit http://www.json.org/
Update
: 2025-02-17
Size
: 648kb
Publisher
:
王洋
[
JSP/Java
]
json
DL : 0
很好的json数据处理格式,java版本的;希望能对大家有帮助-Json good data-processing format, java version everybody has the hope that it can assist
Update
: 2025-02-17
Size
: 53kb
Publisher
:
slzhao
[
JSP/Java
]
json
DL : 0
java后台生成JSON数据和EXT互传数据,全靠它实现。-java Backgrounds EXT generate JSON data and data to each other, depend on its implementation.
Update
: 2025-02-17
Size
: 1.68mb
Publisher
:
fengson
[
.net
]
json
DL : 0
JSON.NET,可以将对象序列化为json,被js解析,以及逆操作-JSON.NET, the target sequence can be translated into json, was js analysis, as well as the inverse operation
Update
: 2025-02-17
Size
: 193kb
Publisher
:
imaxis
[
Delphi VCL
]
json
DL : 1
delphi2009 json 单元,了解delphi2009 json 的实现过程-delphi2009 json Unit
Update
: 2025-02-17
Size
: 14kb
Publisher
:
tomcat
[
MacOS develop
]
json
DL : 0
use JSON with NSString
Update
: 2025-02-17
Size
: 6kb
Publisher
:
Nick D Belkin
«
1
2
3
4
5
6
7
8
9
10
...
50
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.