I am using JSI (Java Spatial Index, RTree) to implement 2D spatial search. I want to save the tree to file, which triggered java.io.NotSerializableException
using code below.
public class GeographicIndexer {
private static final Logger log = LoggerFactory.getLogger(GeographicIndexer.class);
public SpatialIndex spatialIndex = null;
public void init() {
this.spatialIndex = new RTree();
this.spatialIndex.init(null);
}
public void add(float x1, float y1, float x2, float y2, int id) {
Rectangle rect = new Rectangle(x1, y1, x2, y2);
this.spatialIndex.add(rect, id);
}
public void add(float x, float y, int id) {
this.add(x, y, x, y, id);
}
public void saveIndex(String indexStorePath) {
try {
OutputStream file = new FileOutputStream(indexStorePath);
OutputStream buffer = new BufferedOutputStream(file);
ObjectOutput output = new ObjectOutputStream(buffer);
try {
output.writeObject(this.spatialIndex);
} finally {
output.close();
}
} catch(IOException e) {
log.error("Fail to write geographic index");
e.printStackTrace();
}
}
public GeographicIndexer loadIndex(String indexStorePath) {
try {
InputStream file = new FileInputStream(indexStorePath);
InputStream buffer = new BufferedInputStream(file);
ObjectInput input = new ObjectInputStream(buffer);
try {
this.spatialIndex = (SpatialIndex)input.readObject();
} catch (ClassNotFoundException e) {
log.error("Fail to read geographic index");
} finally {
input.close();
}
return this;
} catch(IOException e) {
log.error("Fail to read geographic index");
return this;
}
}
}
How do I serialize this 3rd party class so that I can read/write it? Thanks.