Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用本机 MongoDB 驱动程序和 API,用于com.mongodb.DBObject表示 JSON 对象,但是出于一般目的,我使用了org.json.JSONOBject.
com.mongodb.DBObject
org.json.JSONOBject
我想过替换它并使用 DBObject 作为通用 JSON 库,但感觉不对。
但是为了与两者互操作,使用了低级别的字符串/映射格式/解析接口,我也不喜欢。
是否有一个已知的库可以实现这两个接口以实现更轻松的互操作性?
一般来说,在 BSON 和 JSON 之间进行转换是一种轻松的操作,因此您不必编写更多类。这个答案有帮助吗?