Is it possible to somehow write a BsonDocument object into file like BSON (not in JSON format)? I am using Java with MongoDB Java Driver for writing BsonDocuments.
I am trying somthing like this:
BsonDocument bson = BsonDocument.parse(someJSONString);
bson.writeBSONtoFile("someFilepath"); //this method
I know that this method will not work, but I am looking for something like this.