json-lib的一些过滤操作
package demo4; import java.io.Serializable; import net.sf.json.JSONString; public class User implements JSONString,Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private long id;
private String name;
private String password;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public User(long id, String name, String password) {
super();
this.id = id;
this.name = name;
this.password = password;
} public User() {
super();
} public String toJSONString() {
return "{\"id\":"+this.id+",\"name\":\""+this.name+"\"}";
} }
user.java
package demo4; public class Teacher {
private int id;
private String name;
private String password;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Teacher(int id, String name, String password) {
super();
this.id = id;
this.name = name;
this.password = password;
}
public Teacher() {
super();
} }
Teacher.java
package demo4; import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Date;
import java.util.HashMap;
import java.util.Map; import net.sf.json.JSONObject;
import net.sf.json.JSONSerializer;
import net.sf.json.JsonConfig;
import net.sf.json.processors.JsonBeanProcessor;
import net.sf.json.processors.JsonValueProcessor;
import net.sf.json.util.PropertyFilter; import org.junit.Test; public class Demo {
/* public void registerJsonBeanProcessor(Class target,
JsonBeanProcessor jsonBeanProcessor) Registers a JsonBeanProcessor.
[Java -> JSON] Parameters:
target - the class to use as key
jsonBeanProcessor - the processor to register public void registerPropertyExclusion(Class target, *注册不转换的属性在类中 *
String propertyName) Registers a exclusion for a target class.
[Java -> JSON] Parameters:
target - the class to use as key
propertyName - the property to be excluded public void setExcludes(String[] excludes) 设置不转换的属性
Sets the excludes to use.
Will set default value ([]) if null.
[Java -> JSON] PropertyFilter: 属性过滤器
一个方法:
apply boolean apply(Object source,
String name,
Object value) Parameters:
source - the owner of the property
name - the name of the property
value - the value of the property
Returns:
true if the property will be filtered out, false otherwise */ /**
* 忽略不必要属性重写该对象指定toJSONString方法测试
*/
@Test
public void fun(){
User user=new User(12,"郭大侠","gz1234");
JSONObject jo=JSONObject.fromObject(user);
System.out.println(jo);
} /**
* 忽略不必要的属性,使用jsonConfig实现
* 通过jsonconfig实例,对包含和需要排除的属性进行方便的添加或删除
*/
@Test
public void fun1(){
Teacher t=new Teacher(12,"guodaxia","gz1234");
JsonConfig config=new JsonConfig();
config.setExcludes(new String[]{"password"});//设置排除password属性
JSONObject jo=JSONObject.fromObject(t, config);
System.out.println(jo);
} /**
* 测试使用属性过滤器达到前面的效果
* 使用propertyFilter可以允许同时对需要排除的属性和类进行控制,这种控制还可以是双向的,也可以应用到json字符串到java对象
*/
@Test
public void fun2(){
Teacher t=new Teacher(12,"guodaxia","gz1234");
JsonConfig config=new JsonConfig();
config.setJsonPropertyFilter(new PropertyFilter() { public boolean apply(Object source, String propertyName, Object value) {
/**
* 就这样将Teacher类中的password属性过滤掉了
*/
// return source instanceof Teacher && "password".equalsIgnoreCase(propertyName);
return "password".equalsIgnoreCase(propertyName);//这个是测试它可以双向过滤
} });
JSONObject jo=JSONObject.fromObject(t, config);
System.out.println(jo);
JSONObject jo1=(JSONObject) JSONSerializer.toJSON("{'id':12,'name':'gz','password':'a12345'}", config);//这里使用JSONSerializer得到的JSON对象才有效可转换为Teacher对象,JSONObject.fromObject不行,不知为何
Teacher tt=(Teacher) jo1.toBean(jo1, Teacher.class );
System.out.println(tt.getId()+"--"+tt.getName()+"--"+tt.getPassword()); // JSONObject jo1=JSONObject.fromObject("{'id':12,'name':'gz','password':'a12345'}",config);
// Object tt= JSONObject.toBean(jo1);
// System.out.println(tt); } /**
* 使用registerPropertyExclusion达到前面的效果
*/
@Test
public void fun3(){
Teacher t=new Teacher(12,"guodaxia","gz1234");
JsonConfig config=new JsonConfig();
config.registerPropertyExclusion(Teacher.class, "password");
JSONObject jo=JSONObject.fromObject(t, config);
System.out.println(jo); } /**
* 测试使用自定义JSONBeanProcessor
* JsonBeanProcessor和实现JsonString很类似,返回一个代表原来目标对象的合法JSONObject
*
*/
@Test
public void fun4(){
JsonConfig config=new JsonConfig();
config.registerJsonBeanProcessor(Teacher.class,new JsonBeanProcessor() { public JSONObject processBean(Object bean, JsonConfig config) {
Teacher tea=(Teacher)bean;
return new JSONObject().element("id", tea.getId()).element("name", tea.getName());
}
});
Teacher t=new Teacher(12,"JSON","json");
System.out.println(JSONObject.fromObject(t,config)); } /**
* 自定义JsonValueProcessor
* 比如我们要控制JSON序列化过程中的Date对象的格式化以及数值的格式化,JsonValueProcessor是最好的选择
* 该方法可以用来处理数据,进行格式化操作等等
*/
@Test
public void fun5(){
Map<String,Object> map=new HashMap<String,Object>();
map.put("date", new Date());
map.put("dates", Arrays.asList(new Date()));
JsonConfig config=new JsonConfig();
config.registerJsonValueProcessor(Date.class, new JsonValueProcessor() {
//自定义日期处理格式
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd"); /**
*处理单个Date对象
*/
public Object processObjectValue(String propertyName, Object date, JsonConfig config) {
return sdf.format(date);
} public Object processArrayValue(Object date, JsonConfig config) {
return sdf.format(date);
}
});
System.out.println(JSONObject.fromObject(map, config)); } }
json-lib的一些过滤操作的更多相关文章
- Atitit.json类库的设计与实现 ati json lib
Atitit.json类库的设计与实现 ati json lib 1. 目前jsonlib库可能有问题,可能版本冲突,抛出ex1 2. 解决之道:1 2.1. 自定义json解析库,使用多个复合的js ...
- 如何对Backbone.Collection进行过滤操作
首先我想说的是这篇文章的题目起的很怪,因为我不知道起个什么名字比较好.渲染列表是我们应用中最常见的操作了吧,在运用Backbone的应用中,我们一般会把列表作为一个Collcetion,然后指定一个V ...
- @JSON(serialize=false),过滤不需要的变量
@JSON(serialize=false),过滤不需要的变量 在用struts2返回json类型的数据时,json会自动转换需要转换成json形式的变量,如果哪个变量不需要的话,则可以在该变量的 ...
- Json lib集成stucts2的使用方法 抛出 NestableRuntimeException异常的解决办法
首先贴出struts 2.3.16需要导入的包 因为使用的是2.3 版本,必须要导入这个包,否则会报java.lang.NoClassDefFoundError: org/apache/commons ...
- 使用JsonConfig控制JSON lib序列化
将对象转换成字符串,是非常常用的功能,尤其在WEB应用中,使用 JSON lib 能够便捷地完成这项工作.JSON lib能够将Java对象转成json格式的字符串,也可以将Java对象转换成xml格 ...
- 微信小程序 WXS实现json数据需要做过滤转义(filter)
前言 最近有在做小程序开发,在开发的过程中碰到一点小问题,描述一下先. 本人在职的公司对于后台获取的 json 数据需要做过滤转义的很多,不同的状态码会对应不同的文字,但是在微信小程序中又没有类似 v ...
- Trident的过滤操作
1.过滤操作 只是判断某个tuple是否保留 无需跨网络,无需跨分区 不会改变tuple的结构,只是改变tuple的数量 2.需求 过滤掉不是订单的tuple. 其中订单中包含“IBEIfeng.gi ...
- stark组件之过滤操作【模仿Django的admin】
一.先看下django的admin是如何实现过滤操作 首先在配置类中顶一个list_filter的列表,把要过滤的字段作为元素写i进去就可以了 class testbook(admin.ModelAd ...
- Fiddler过滤操作
Fidller,不做过多的简介,其中的过滤操作肯定是绕不过去的.直接上图.
- 【SQL必知必会笔记(3)】SELECT语句的WHERE子句数据过滤操作
上个笔记主要介绍了利用SELECT语句检索单个/多个/所有列,并利用DISTINCT关键字检索具有唯一性的值.利用LIMIT/OFFSET子句限制结果:以及利用ORDER BY子句排序检索出的数据,主 ...
随机推荐
- JSP的优势
以下列出了使用JSP带来的其他好处: 与ASP相比:JSP有两大优势.首先,动态部分用Java编写,而不是VB或其他MS专用语言,所以更加强大与易用.第二点就是JSP易于移植到非MS平台上. 与纯 S ...
- 托管程序调用非托管dll问题总结
托管程序Visual Basic.net, 非托管DLL标准C++程序(使用VC++编译) 函数调用定义 第一种写法: <DllImportAttribute("XXX.dll&quo ...
- python pymysql安装
==================pymysql=================== 由于 MySQLdb 模块还不支持 Python3.x,所以 Python3.x 如果想连接MySQL需要安装 ...
- ios推送服务,php服务端
本文转载至http://my.oschina.net/AStar/blog/176531 生成证书 证书生成参考:https://parse.com/tutorials/ios-push-noti ...
- IT人和普洱茶
IT人与普洱茶 作为一个平凡的IT人,在小孩眼中我就像黑客帝国的主角一样了不起:在亲戚眼中我是在写字楼做办公室吹空调的人:在朋友眼中我就是一个会写代码.掌握高科技术的人:在女友眼中我是一个在名企工作的 ...
- 【BZOJ3747】[POI2015]Kinoman 线段树
[BZOJ3747][POI2015]Kinoman Description 共有m部电影,编号为1~m,第i部电影的好看值为w[i]. 在n天之中(从1~n编号)每天会放映一部电影,第i天放映的是第 ...
- debian dhcp配置
1 将/etc/network/interfaces中设置成dhcp auto eth0iface eth0 inet dhcp 2 重启网络服务 /etc/init.d/networking res ...
- Android代码绘制虚线、圆角、渐变效果图
drawable文件夹放置动画/形状/选择器等属性文件,唯一的drawable文件名,不允许写错和拼错,否则运行报错.drawable文件夹底下的xml文件可以包括的标签共18个:animation- ...
- 短时程突触可塑性(short-term synaptic plasticity)
介绍 神经元的突触可塑性一般被认为是大脑学习与记忆的分子生物学机制,它是指突触传递效率增强或减弱的变化现象.若这种变化只持续数十毫秒到几分,便称之为短时程突触可塑性,其中效率增强与减弱分别叫做短时程增 ...
- JETSON TK1 ~ 基于eclipse下开发ROS
此文档是在PC端开发后移植到TK1,并非在TK1上安装eclipse 官方使用IDE开发的文档: http://wiki.ros.org/IDEs 一:安装eclipse 1.下载eclipse安装包 ...