Cloudant Client library available in Java that will store one document at a time,
CloudantClient client = ClientBuilder.account("accounbt")
.username("username").password("password")
.disableSSLAuthentication().build();*/
Database db = client.database("databaseName", true);
db.save(jsonObject);
Is there any way to save bulk document in cloudant?