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.
我做了一些包含一些成员变量的类。
我应该像这样将这个类与其他类联系起来:
Hashtable<Class1 , ArrayList<Class2>>
我想将此哈希表存储在 Android 上的 SQLite 中。我考虑序列化,字节流,但不确定我自己的类是否可行。有人说使用 JSON 对象。JSON 或 XML 创建是唯一的解决方案吗?
提前致谢 : )
您可以使用 JSON 或 XML,但如果您想在数据库上运行查询,创建表会更好。如果 Class1 和 Class2 项目存储在表中,则哈希表对应于具有 Class1_ID 和 Class2_ID 等列的联结表。