how to Convert X and Y to lat and long
问题 I have a table called IK_TEMP and it contains columns called data, 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.getBytes("RANGE")); fromBytes(rs.getBytes("RANGE")); } The RANGE field(binary / BLOB) field is already encoded using binary from arcGIS and saved in