【发布时间】:2015-08-28 14:39:30
【问题描述】:
我正在制作一个应用程序,它会询问用户他的教师、部门和年级,然后显示科目列表。
问题是保存主题的最佳方法是什么,以便于检索它们并将它们显示给用户。
我尝试了 XML,但它不起作用,现在我尝试了 JSON,但不确定它是否是存储此类数据的最佳方式?
回答:
正如所有人所说,最好的方法是将数据保存在 SQLite 数据库中。
这是我的 JSON 快照
{
"faculty_engineering": {
"name": "Engineering",
"department_prep": {
"name": "prep",
"grade_1": {
"term_1": {
"subjects": [
"Math",
"physics",
"English",
"Realisation",
"subject"
]
},
"term_2": {
"subjects": [
"chemistry",
"Math",
"fekh",
"Geometry",
"Entag",
"Mechanics"
]
}
}
},
"department_systems_and_computer_engineering": {
"name": "Systems and computer engineering",
"grade_1": {
"term_1": {
"subjects": [
"Programming",
"Electronics",
"Math",
"Circuits",
"Measure",
"English"
]
},
"term_2": {
"subjects": [
"Algorithms",
"Electronics",
"Math",
"Fields",
"Religious subject"
]
}
},
"grade_2": {
"term_1": {
"subjects": [
"Math",
"Integrated circuits",
"Systems and signals",
"machines VHDL",
"Numerical Analysis",
"Object-oriented programming",
"Tests",
"Realisation subject"
]
},
"term_2": {
"subjects": [
"Math",
"Logical circuits",
"Automatic Control",
"Electric machines",
"Religious subjects",
"Realisation subject"
]
}
},
"grade_3": {
"term_1": {
"subjects": [
"Math",
"Communications systems",
"Electronics",
"Religious subjects",
"Operating system",
"Digital Control",
"Tests ",
"Transition systems and mechanisms ",
"Power electric systems ",
"Realisation subject"
]
},
"term_2": {
"subjects": [
"Databases",
"Microprocessors",
"Administration and engineering projects",
"Sensors of adapters",
"Religious subjects",
"Realisation subject"
]
}
},
"grade_4": {
"term_1": {
"subjects": [
"Special computer subject",
"Tests",
"Engineering programming",
"Intelligent Systems",
"Computer architecture",
"Interpreters",
"Advanced software",
"Realisation subject"
]
},
"term_2": {
"subjects": [
"Algorithms",
"Advanced software",
"Computer architecture",
"Interpreters",
"Realisation subject"
]
}
}
},
"department_": {
"name": "",
"grade_1": {
"term_1": {
"subjects": [
]
},
"term_2": {
"subjects": [
]
}
},
"grade_2": {
"term_1": {
"subjects": [
]
},
"term_2": {
"subjects": [
]
}
},
"grade_3": {
"term_1": {
"subjects": [
]
},
"term_2": {
"subjects": [
]
}
},
"grade_4": {
"term_1": {
"subjects": [
]
},
"term_2": {
"subjects": [
]
}
}
}
}
}
【问题讨论】:
-
我会将它们保存在数据库中。
-
我正在考虑将它们保存在 SQLite 数据库中,但我认为对于这种简单的情况来说它会过于复杂。
标签: java android json database save