public class WKBReader extends Object
Geometryfrom a byte stream in Well-Known Binary format. Supports use of an
InStream, which allows easy use with arbitrary byte stream sources.
This class reads the format describe in WKBWriter. It also partially handles the Extended WKB format used by PostGIS, by parsing and storing SRID values. The reader repairs structurally-invalid input (specifically, LineStrings and LinearRings which contain too few points have vertices added, and non-closed rings are closed).
This class is designed to support reuse of a single instance to read multiple geometries. This class is not thread-safe; each thread should create its own instance.
for a formal format specification
| Constructor and Description |
|---|
WKBReader()
|
WKBReader(GeometryFactory
|
public WKBReader()
public WKBReader(GeometryFactorygeometryFactory)
public static byte[] hexToBytes(Stringhex)
hex - a string containing hex digits
public Geometryread(byte[] bytes) throws ParseException
Geometry in WKB format from a byte array.
bytes - the byte array to read from
ParseException - if the WKB is ill-formed
public Geometryread(InStream is) throws IOException , ParseException
is - the stream to read from
IOException - if the underlying stream creates an error
ParseException - if the WKB is ill-formed