Java中可用的Cloudant客户端库,一次存储一个文档,
CloudantClient client = ClientBuilder.account("accounbt")
.username("username").password("password")
.disableSSLAuthentication().build();*/
Database db = client.database("databaseName", true);
db.save(jsonObject);
有没有办法在cloudant中保存批量文档?
答案 0 :(得分:1)
以下是可以启用批量上传的代码,
CloudantClient client = ClientBuilder.account("accounbt")
.username("username").password("password")
.disableSSLAuthentication().build();*/
Database db = client.database("databaseName", true);
List<JSONObject> arrayJson = new ArrayList<String>();
arrayJson.add(new JSONObject("{data:hello}"));
arrayJson.add(new JSONObject("{data:hello1}"));
arrayJson.add(new JSONObject("{data:hello2}"));
db.bulk(arrayJson);