我是 Android 新手,目前我正在开发自己的应用程序(用于学习)。问题是,以 JSON 而不是 SQLite 的形式存储固定数据是否好(我根本不会更新数据),我尝试将其存储在 HashMap 中,我认为这不太好。
HashMap 中的当前代码是
HashMap<Integer, String[]> data = new HashMap<Integer, String[]>();
data.put(1, new String[]{"asd", "cax", "etc", "etc"});
提前致谢