关于FastJson bean中首字母大写与二层bean的问题


1.首字母大写只要在bean前面get上加上

  @JsonProperty(value = "Name")  
即可。

例如

	private String AppSysID;//APP版本号
        @JSONField(name = "AppSysID")
	public String getAppSysID() {
		return AppSysID;
	}
	public void setAppSysID(String AppSysID) {
		this.AppSysID = AppSysID;
	}


2.如果bean外面需要包一层。例如

{"Bean":{ "AppSysID":"10.1" }}

则bean类为

{"Bean":{ "AppSysID":"10.1" }}

public class DevInfo {
	public Bean Bean;  
        public class  Bean {  
		private String AppSysID;//APP版本号
                @JSONField(name = "AppSysID")
		public String getAppSysID() {
			return AppSysID;
		}
		public void setAppSysID(String appSysID) {
			AppSysID = appSysID;
		}

        }
 
        @JSONField(name = "Bean")
	public Bean  getBean () {
		return Bean ;
	}

	public void setBean (Bean  getBean ) {
		this.Bean  = getBean ;
	}

}

然后转成JSON
 
DevInfo devinfo = new DevInfo();
Bean devSend = devinfo.new Bean();
devSend.setAppSysID("1");
devinfo.setBean(devSend);
JSONObject devIDJSONObj = JSONObject.parSEObject(JSON.toJSONString(devinfo));
String json = devIDJSONObj.toJSONString();
System.out.println(json);
输出是这个:{"Bean":{"AppSysID":"1"}} =-=嗯就是这样了。。

相关文章

AJAX是一种基于JavaScript和XML的技术,能够使网页实现异步交...
在网页开发中,我们常常需要通过Ajax从后端获取数据并在页面...
在前端开发中,经常需要循环JSON对象数组进行数据操作。使用...
AJAX(Asynchronous JavaScript and XML)是一种用于创建 We...
AJAX技术被广泛应用于现代Web开发,它可以在无需重新加载页面...
Ajax是一种通过JavaScript和HTTP请求交互的技术,可以实现无...