多维数组到字符串(适用于 android 的 SQLite)
无论如何,有没有办法将二维数组
序列化为字符串,在记忆?
我正在尝试将 2D 数组序列化为 SQLite3 字符串,这样我就可以将其放入字段中。上面例子的问题在于作者使用了fileIO,这在移动设备上是速度杀手。
Java serialization of multidimensional array
Is there anyway to serialize a 2D array to a string, in memory?
I'm trying to serialize a 2D array to an SQLite3 string, so I can put it in a field. The problem with the example above is that the author used fileIO, which on mobile devices is a speed killer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此代码将不同大小的 int 数组序列化为 String 并将其反序列化回 int 数组
This code serialize int arrays of different sizes into String and deserialize it back into int arrays
用户 T3hC13h 在这里有一个有趣的方法: http:// www.dreamincode.net/forums/topic/100732-serializingdeserializing-a-2-Dimensional-array/
User T3hC13h has an interesting approach here: http://www.dreamincode.net/forums/topic/100732-serializingdeserializing-a-2-dimensional-array/