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.
即使应用程序被卸载,有没有办法保存共享对象?我正在使用闪存,该应用程序适用于 android 设备。
您可以在 sd 卡上创建一个文件并使用 ObjectOutputStream 保存您的对象。您只需要在自定义对象中实现 java.io.Seriealizable 接口。
此解决方案的缺点是每个应用程序都可以访问您的文件,并且用户可能会删除它。