我有一個對象的列表,像如下如何使用flex json序列化對象列表?
List<ProductInfo>
我想序列化使用Flex JSON,以便它想
[{"product_id":"2","name":'stack"'},{"product_id":"2","name":"overflow"}]"
從上面的字符串反序列化到對象列表我我使用下面的代碼
final List<ProductInformation> productInformationList = new JSONDeserializer<List<ProductInformation>>().use(null, ArrayList.class)
.use("values", ProductInformation.class).deserialize(parameterValue);
用於序列化對象到字符串我這樣做,但它不工作....我缺少somet興...
final String serializizedString = new JSONSerializer().serialize(productInformationList);
我需要什麼序列化對象到字符串?
你嘗試過什麼?請張貼一些代碼,在完成你的目標展示你的最好的嘗試,並要求有關引起錯誤或給你的麻煩... – maerics
@maerics一個部分一個具體問題:做ü有關於flexjson任何想法.. –