欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java中JSONObject转换为HashMap(方法+main方法调用实例)

程序员文章站 2022-04-01 16:43:44
1.首先要导入json相关的jar包引入的jar包:(版本自行定义,可以选用使用人数偏多的版本,这样比较稳定)commons-beanutils-1.9.2.jarcommons-collection...

1.首先要导入json相关的jar包
引入的jar包:
(版本自行定义,可以选用使用人数偏多的版本,这样比较稳定)
commons-beanutils-1.9.2.jar
commons-collections-3.2.1.jar
commons-lang-2.6.jar
commons-logging-1.2.jar
ezmorph-1.0.6.jar
json-lib-2.4-jdk15.jar

jar包的下载可以去下面这个网址搜索:

java中JSONObject转换为HashMap(方法+main方法调用实例)

2.在eclipse下(也可以是intellij idea或者myeclipse)
新建package和class(步骤略过,可自行选择名字),这里就使用jsontest。

以下代码块方法见注释,是将jsonobject转换为hashmap的主要方法,传入参数为一个jsonobject对象,返还值为一个hashmap。

//1.將jsonobject對象轉換為hashmap<string,string>
public static hashmap<string, string> jsonobjecttohashmap(jsonobject jsonobj){
	hashmap<string, string> data = new hashmap<string, string>(); 
	iterator it = jsonobj.keys();
	while(it.hasnext()){
		string key = string.valueof(it.next().tostring());
		string value = (string)jsonobj.get(key).tostring();
		data.put(key, value);
	}
	system.out.println(data);
	return data;
}

这个方法是将json字符串转换为hashmap,传入参数为一段json格式的字符串,返还一个hashmap。

//2.将json字符串转换成hashmap<string,string>
public static hashmap<string, string> jsontohashmap(string jsonstrin){	
	hashmap<string, string> data = new hashmap<string, string>(); 
	try{
	  // 将json字符串转换成jsonobject 
	  jsonobject jsonobject = jsonobject.fromobject(jsonstrin); 
	  @suppresswarnings("rawtypes")
		iterator it = jsonobject.keys();
	  // 遍历jsonobject数据,添加到map对象 
	  while (it.hasnext()) 
	  {
	  	string key = string.valueof(it.next()).tostring(); 
	    string value = (string) jsonobject.get(key).tostring();  
	    data.put(key, value); 
	  } 
	}catch (exception e) {
		e.printstacktrace();
		//joptionpane.showmessagedialog(null,"error:["+e+"]");
	}
	system.out.println(data);
	return data; 	
}	

在这里顺便介绍一下iterator类(迭代器)
迭代器是一种设计模式,它是一个对象,它可以遍历并选择序列中的对象,而开发人员不需要了解该序列的底层结构。迭代器通常被称为“轻量级”对象,因为创建它的代价小。
  java中的iterator功能比较简单,并且只能单向移动:
  (1) 使用方法iterator()要求容器返回一个iterator。第一次调用iterator的next()方法时,它返回序列的第一个元素。注意:iterator()方法是java.lang.iterable接口,被collection继承。
  (2) 使用next()获得序列中的下一个元素。
  (3) 使用hasnext()检查序列中是否还有元素。
  (4) 使用remove()将迭代器新返回的元素删除。
  iterator是java迭代器最简单的实现,为list设计的listiterator具有更多的功能,它可以从两个方向遍历list,也可以从list中插入和删除元素。

3.直接上代码

package json;

import java.util.hashmap;
import java.util.iterator;
import net.sf.json.jsonobject;

public class jsontest {

	public static void main(string[] args) {
		jsonobject jsonobj = new jsonobject(true);
		string content1 = "aaaaa";
		string content2 = "bbbbb";
		string content3 = "ccccc";
		jsonobj.put("a", content1);
		jsonobj.put("b", content2);
		jsonobj.put("c", content3);
		system.out.println(jsonobj.tostring());
		jsonobjecttohashmap(jsonobj);
		string jsonstr = "{name:'王杨',sex:'男',school:'郑州航空工业管理学院'}";
		jsontohashmap(jsonstr);
	}
	
	//1.將jsonobject對象轉換為hashmap<string,string>
	public static hashmap<string, string> jsonobjecttohashmap(jsonobject jsonobj){
		hashmap<string, string> data = new hashmap<string, string>(); 
		iterator it = jsonobj.keys();
		while(it.hasnext()){
			string key = string.valueof(it.next().tostring());
			string value = (string)jsonobj.get(key).tostring();
			data.put(key, value);
		}
		system.out.println(data);
		return data;
	}
	//2.将json字符串转换成hashmap<string,string>
	public static hashmap<string, string> jsontohashmap(string jsonstrin){	
		hashmap<string, string> data = new hashmap<string, string>(); 
		try{
		  // 将json字符串转换成jsonobject 
		  jsonobject jsonobject = jsonobject.fromobject(jsonstrin); 
		  @suppresswarnings("rawtypes")
			iterator it = jsonobject.keys();
		  // 遍历jsonobject数据,添加到map对象 
		  while (it.hasnext()) 
		  {
		  	string key = string.valueof(it.next()).tostring(); 
		    string value = (string) jsonobject.get(key).tostring();  
		    data.put(key, value); 
		  } 
		}catch (exception e) {
			e.printstacktrace();
			//joptionpane.showmessagedialog(null,"error:["+e+"]");
		}
		system.out.println(data);
		return data; 	
	}	

}

记得修改自己的package名称和 class名称。

4.调用main方法测试
(1)传入参数为jsonobject:

java中JSONObject转换为HashMap(方法+main方法调用实例)

输出结果为:

java中JSONObject转换为HashMap(方法+main方法调用实例)

(2)传入参数为json字符串:

java中JSONObject转换为HashMap(方法+main方法调用实例)

输出结果为:

java中JSONObject转换为HashMap(方法+main方法调用实例)

这里可以看到,输出的参数顺序和传入时正好相反。但是输出类型为hashmap,数据存储的格式是以key-value键值对的形式存数于hashmap中的。我们可以通过获取key值来获取到其对应的value。
增加如下代码在main方法最后面:

system.out.println("");//空格换行
//通过对应的key键值,获取value
hashmap<string,string> hashmap = jsontohashmap(jsonstr);
system.out.println("--------通过遍历hashmap输出值:-------");
system.out.println("name:"+hashmap.get("name")+",sex:"+
hashmap.get("sex")+",school:"+hashmap.get("school"));

得到如下结果:

java中JSONObject转换为HashMap(方法+main方法调用实例)

结语:

到此基本的方法介绍完毕,其实是依靠了jsonobject这个对象的fromobject()方法。fromobject()方法可以转换的类型很多,可以是map、list、数组等等。运用在自己的项目中时,可以是bean或者model等自定义的类。

1. list集合转换成json代码
list list = new arraylist();
list.add( "first" );
list.add( "second" );
jsonarray jsonarray2 = jsonarray.fromobject( list );

2. map集合转换成json代码
map map = new hashmap();
map.put("name", "json");
map.put("bool", boolean.true);
map.put("int", new integer(1));
map.put("arr", new string[] { "a", "b" });
map.put("func", "function(i){ return this.arr[i]; }");
jsonobject json = jsonobject.fromobject(map);

3. bean转换成json代码
jsonobject jsonobject = jsonobject.fromobject(new jsonbean());

4. 数组转换成json代码
boolean[] boolarray = new boolean[] { true, false, true };
jsonarray jsonarray1 = jsonarray.fromobject(boolarray);

以上类型均可以借用fromobject()方法转换为一个jsonobject类型实例。
json作为轻量级的数据格式,在前后端数据交互时很常见,每个公司应该都有自己的json转换方法,是公司常见的工具类。
方便了随后的开发使用。

到此这篇关于java中jsonobject转换为hashmap(方法+main方法调用实例)的文章就介绍到这了,更多相关jsonobject转换为hashmap内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!