decode the blob geometry using java
问题 In my table I have two columns, Data and Range . Range field is encoded binary from ArcGIS. this format is supposed to be a standard format with in the Geo spatial industry. https://www.gaia-gis.it/gaia-sins/BLOB-Geometry.html http://www.geopackage.org/spec120/#gpb_format need to use the srs_id to decode the Range field. String sql = "SELECT DATA, RANGE FROM IK_TEMP"; try (Connection conn = this.connect(); Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery(sql)){ //