JSONObject到文档
嗨,我是mongodb的新手,我想将JSONObject转换为Document,然后将其存储到mongodb。这是我编写的代码。我在json中获得了一个服务api。
CloseableHttpResponse response = httpClient.execute(get); HttpEntity entity = response.getEntity();
JSONObject Rat = new JSONObject(EntityUtils.toString(entity));
然后我想将此Rat作为文档保存到mongodb,然后将其插入mongodb或mysql中,以便以后显示。我以为
Document doc = new Document(....);coll.insertOne(doc); /*where coll is
MongoCollection<Document> coll = db.getCollection("rates"); */
但是如何从JSONObject转换为Document?
回答:
只是为了帮助您。您也可以这样做:
JSONObject rat = exRat.getJSONObject("fieldfromJson");String newrat = rat.toString();
然后,您必须解析所需的字段,并且您有一个字符串。
以上是 JSONObject到文档 的全部内容, 来源链接: utcz.com/qa/418031.html