如何将值传递给地图和VO内的VO

时间:2017-08-28 09:01:04

标签: java jersey jersey-2.0 jersey-client jersey-1.0

我已将CompanyProfileVO companyProfile_addressVOMap声明为map StringVO 我想以url编码的形式为company_name中的AddressIdentificationVO提供价值

如何通过url编码形式设置company_name的值?

使用此

获取值

CompanyProfileVO.getCompanyProfile_addressVOMap().get("COMPANY").getCompany_name()

CompanyProfileVO.java

Map<String,AddressIdentificationVO> companyProfile_addressVOMap;

AddressIdentificationVO

@FormParam("company_name")
String company_name;

1 个答案:

答案 0 :(得分:0)

根据您的代码,您需要为json创建两个不同的Variable对象1,为XMl创建两个(URL编码)。你应该通过你的

Map<String,AddressIdentificationVO> companyProfile_addressVOMap;
AddressIdentificationVO

JSONVO并调用JSON方法当你点击URL编码方法时。