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.
如何将哈希映射内存映射到 JAVA 中的文件。
HashMap<Long, ArrayList<String>> myMap = new HashMap<Long, ArrayList<String>>();
我想将它内存映射到一个文件,这样如果在 myMap 的 get() 方法期间出现任何异常,我可以再次检索数据。
谢谢
在这种情况下,您不需要备份数据 - 如果在调用get地图中的数据期间引发异常,则应保留该数据。
get
如果问题是您的程序在抛出异常时崩溃(这会导致您丢失数据),那么您应该寻找捕获并处理异常。