public class CMapParser
extends java.lang.Object
| Constructor and Description |
|---|
CMapParser()
Creates a new instance of CMapParser.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
main(java.lang.String[] args)
A simple class to test parsing of cmap files.
|
CMap |
parse(java.io.File file)
Parse a CMAP file on the file system.
|
CMap |
parse(java.lang.String resourceRoot,
java.io.InputStream input)
This will parse the stream and create a cmap object.
|
public CMap parse(java.io.File file) throws java.io.IOException
file - The file to parse.java.io.IOException - If there is an issue while parsing the CMAP.public CMap parse(java.lang.String resourceRoot, java.io.InputStream input) throws java.io.IOException
resourceRoot - The root path to the cmap file. This will be used
to find referenced cmap files. It can be null.input - The CMAP stream to parse.java.io.IOException - If there is an error parsing the stream.public static void main(java.lang.String[] args)
throws java.lang.Exception
args - Some command line arguments.java.lang.Exception - If there is an error parsing the file.