下面是示例代碼查詢兩個不同的表Movies
& post
並返回JSONObject
(即org.json.JSONObject)的列表。
商品分類有一個toJSON()
將商品數據作爲Json字符串返回。可以使用toJSON()
方法將項目數據存儲爲List<String>
或List<JSONObject>
。
在下面的代碼示例中,我返回List<JSONObject>
。
示例代碼: -
List<JSONObject> resultJson = new ArrayList<>();
DynamoDB dynamoDB = new DynamoDB(dynamoDBClient);
Table tableMovies = dynamoDB.getTable("Movies");
QuerySpec querySpecMovies = new QuerySpec();
querySpecMovies.withKeyConditionExpression("yearkey = :yearval")
.withValueMap(new ValueMap().withNumber(":yearval", 2014));
IteratorSupport<Item, QueryOutcome> iterator = tableMovies.query(querySpecMovies).iterator();
while (iterator.hasNext()) {
Item movieItem = iterator.next();
System.out.println("Movie data ====================>" + movieItem.toJSONPretty());
resultJson.add(new JSONObject(movieItem.toJSON()));
}
Table tablePosts = dynamoDB.getTable("post");
QuerySpec querySpecPosts = new QuerySpec();
querySpecPosts.withKeyConditionExpression("postId = :postIdval")
.withValueMap(new ValueMap().withString(":postIdval", "3"));
iterator = tablePosts.query(querySpecPosts).iterator();
while (iterator.hasNext()) {
Item postItem = iterator.next();
System.out.println("Post data ====================>" + postItem.toJSONPretty());
resultJson.add(new JSONObject(postItem.toJSON()));
}
return resultJson;
輸出: -
[{
"country": ["IN", "UK", "US"],
"Description": "Delete and set",
"yearkey": 2014,
"total_val": 0,
"title": "The Big New Movie 2",
"total_new_val": 2
}, {
"postId": "3",
"text": "Hello World",
"tags": ["A", "C"]
}]