Bson Document to Json in Java

29,795

Solution 1

No, it is not possible to produce the plain JSON. Please refer this link.

However, it can produce JSON in two modes.

1) Strict mode - Output that you have already got

2) Shell mode

Shell Mode:-

JsonWriterSettings writerSettings = new JsonWriterSettings(JsonMode.SHELL, true);           
System.out.println(doc.toJson(writerSettings));

Output:-

"createdOn" : ISODate("2016-07-16T16:26:51.951Z")

MongoDB Extended JSON

Solution 2

Sadly, IMO, MongoDB Java support is broken.

That said, there is a @deprecated class in the mongo-java-driver that you can use:

String json = com.mongodb.util.JSON.serialize(document);
System.out.println("JSON serialized Document: " + json);

I'm using this to produce fasterxml (jackson) compatible JSON from a Document object that I can deserialize via new ObjectMapper().readValue(json, MyObject.class).

However, I'm not sure what they expect you to use now that the JSON class is deprecated. But for the time being, it is still in the project (as of v3.4.2).

I'm importing the following in my pom:

<dependency>
  <groupId>org.mongodb</groupId>
  <artifactId>mongodb-driver-async</artifactId>
  <version>3.4.2</version>
</dependency>
<!-- Sadly, we need the mongo-java-driver solely to serialize
     Document objects in a sane manner -->
<dependency>
  <groupId>org.mongodb</groupId>
  <artifactId>mongo-java-driver</artifactId>
  <version>3.4.2</version>
</dependency>

I'm using the async driver for actually fetching and pushing updates to mongo, and the non-async driver solely for the use of the JSON.serialize method.

Solution 3

In theory we are supposed to use toJSON() per... https://jira.mongodb.org/browse/JAVA-1770

However, it seems that, at least up through 3.6, toJSON() isn't supported on various types the old JSON.serialize() method handled without issue, such as the AggregateIterable<Document> objects output by aggregate().

Solution 4

Here is a 2020 update to answer exactly your question, i.e. getting this exact format:

"modified":"2016-07-16T16:26:51.951Z"

You have to use writerSettings like notionquest suggested, but with a custom date converter and DateTimeFormatter.ISO_INSTANT:

public class JsonDateTimeConverter implements Converter<Long> {

    private static final Logger LOGGER = LoggerFactory.getLogger(JsonDateTimeConverter.class);
    static final DateTimeFormatter DATE_TIME_FORMATTER = DateTimeFormatter.ISO_INSTANT
        .withZone(ZoneId.of("UTC"));

    @Override
    public void convert(Long value, StrictJsonWriter writer) {
        try {
            Instant instant = new Date(value).toInstant();
            String s = DATE_TIME_FORMATTER.format(instant);
            writer.writeString(s);
        } catch (Exception e) {
            LOGGER.error(String.format("Fail to convert offset %d to JSON date", value), e);
        }
    }
}

Use it like this:

doc.toJson(JsonWriterSettings
            .builder()
            .dateTimeConverter(new JsonDateTimeConverter())
            .build())
Share:
29,795
Bharath Karnam
Author by

Bharath Karnam

Updated on June 04, 2020

Comments

  • Bharath Karnam
    Bharath Karnam almost 4 years

    This is my code:

    MongoDBSingleton dbSingleton = MongoDBSingleton.getInstance();
    MongoDatabase db;
    
    try {
        db = dbSingleton.getTestdb();
        MongoIterable<String> mg = db.listCollectionNames();
        MongoCursor<String> iterator=mg.iterator();
    
        while (iterator.hasNext()) {
            MongoCollection<Document> table = db.getCollection(iterator.next());
    
            for (Document doc: table.find()) {  
                System.out.println(doc.toJson());
            }
        }
    
    }
    

    This the output of toJson:

    "modified" : { "$date" : 1475789185087}
    

    This is my output of toString:

    {"modified":"Fri Oct 07 02:56:25 IST 2016"}
    

    I want String date format in Json, how to do it?

  • Bharath Karnam
    Bharath Karnam over 7 years
    but how to convert this "createdOn" : ISODate("2016-07-16T16:26:51.951Z") to Date(),
  • Shadow Man
    Shadow Man about 6 years
    I use String id = ObjectId.get().toHexString(); rather than storing ObjectId directly.