JSON轉換工具類

`public class JsonUtil {java

//該方法的參數,Object爲即將轉化的java對象,string.... properties表明不轉譯的字段
public static String toJSONString(Object object,String ... properties) {
            //建立一個Filter,
	SimplePropertyPreFilter filter = new SimplePropertyPreFilter();
	for(String property : properties) {
                //向filter中添加不轉譯的字段
		filter.getExcludes().add(property);
	}
        //返回使用的爲JSON的.toJSONSTRING的方法,參數爲java對象,和建立的攔截器對象,後面兩個參數爲固定格式
	return JSON.toJSONString(object,filter,SerializerFeature.PrettyFormat,SerializerFeature.DisableCircularReferenceDetect);
}

}`code

相關文章
相關標籤/搜索