在我的表中,我有两列,Data
并且Range
.
范围字段是来自 ArcGIS 的二进制编码。这种格式应该是地理空间行业的标准格式。
https://www.gaia-gis.it/gaia-sins/BLOB-Geometry.html
http://www.geopackage.org/spec120/#gpb_format
需要使用srs_id
来解码 Range 字段。
String sql = "SELECT DATA, RANGE FROM IK_TEMP";
try (Connection conn = this.connect();
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery(sql)){
// loop through the result set
while (rs.next()) {
System.out.println(rs.getString("DATA") + "\t" +
rs.getString("RANGE"));
}
我需要解码这个范围字段。我怎样才能解码它。
我看过例子,但它没有用。