- 相关推荐
java中的JSON操作
导语:Java是一门面向对象编程语言,不仅吸收了C++语言的各种优点,还摒弃了C++里难以理解的多继承、指针等概念,因此Java语言具有功能强大和简单易用两个特征。下面我们来看看java中的JSON操作,希望对大家有所帮助。
一、JSON简介
JSON是JavaScript对象表示法,是存储和交换文本信息的语法。并且独立于语言和平台。类似于xml,比xml更小、更快、更易解析。
二、JSON对象
1、JSON对象在花括号中书写,对象可以包含多个名称/值对:
{“firstname”:”wang”,”lastname”:”hong”}
2、JSON数组在方括号中书写,数组可包含多个对象
1 2 3 4 5 6 | { "employees" :[ { "firstname" : "john" , "lastname" : "doe" }, { "firstname" : "anna" , "lastname" : "smith" } ] } |
三、java中读取json数据
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | import java.io.FileNotFoundException; import java.io.FileReader; import com.google.gson.JsonArray; import com.google.gson.JsonIOException; import com.google.gson.JsonObject; import com.google.gson.JsonParser; import com.google.gson.JsonSyntaxException; public class Json_demo { public static void main(String[] args) throws JsonIOException, JsonSyntaxException, FileNotFoundException { // TODO Auto-generated method stub //建立一个json解析器 JsonParser parser = new JsonParser(); JsonObject object = (JsonObject) parser.parse( new FileReader( "test.json" )); //get方法获得键,getAs方法获得其值 System.out.println( "cat=" + object.get( "cat" ).getAsString()); System.out.println( "pop=" + object.get( "pop" ).getAsBoolean()); JsonArray array = object.get( "languages" ).getAsJsonArray(); for ( int i = 0 ; i < array.size(); i++) { System.out.println( "--------------" ); JsonObject subobject = array.get(i).getAsJsonObject(); System.out.println( "id=" + subobject.get( "id" ).getAsInt()); System.out.println( "ide=" + subobject.get( "ide" ).getAsString()); System.out.println( "name" + subobject.get( "name" ).getAsString()); } } } |
四、使用json创建数据
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | import com.google.gson.JsonArray; import com.google.gson.JsonObject; public class Create_Json { public static void main(String[] args) { JsonObject object = new JsonObject(); object.addProperty( "cat" , "it" ); JsonArray array = new JsonArray(); JsonObject lan1 = new JsonObject(); lan1.addProperty( "id" , 1 ); lan1.addProperty( "name" , "java" ); lan1.addProperty( "ide" , "eclipse" ); array.add(lan1); JsonObject lan2 = new JsonObject(); lan2.addProperty( "id" , 2 ); lan2.addProperty( "name" , "Swift" ); lan2.addProperty( "ide" , "XCode" ); array.add(lan2); JsonObject lan3 = new JsonObject(); lan3.addProperty( "id" , 3 ); lan3.addProperty( "name" , "c#" ); lan3.addProperty( "ide" , "VS" ); array.add(lan3); object.add( "languages" , array); object.addProperty( "pop" , true ); System.out.println(object); } } |
【java中的JSON操作】相关文章:
Java中操作Excel表格方法09-06
java操作mongodb基础10-13
java位操作符的知识10-15
java位操作符是什么07-18
Java数组的基本操作方法介绍08-14
java日期时间基本操作方法08-08
Java中finally的问题09-28
JAVA中的main函数10-04
java中对ServletsJSP的描述04-24