public interface TableReader
| Modifier and Type | Method and Description |
|---|---|
Table |
readTable(java.io.File f)
Read in a table from the given File.
|
Table |
readTable(java.io.InputStream is)
Read in a table from the given InputStream.
|
Table |
readTable(java.lang.String location)
Read in a table from the file at the given location.
|
Table |
readTable(java.net.URL url)
Read in a table from the given URL.
|
Table readTable(java.lang.String location) throws DataIOException
IOLib.streamFromString(String) method,
allowing URLs, classpath references, and files on the file system
to be accessed.location - the location to read the table fromDataIOExceptionIOLib.streamFromString(String)Table readTable(java.net.URL url) throws DataIOException
url - the url to read the graph fromDataIOExceptionTable readTable(java.io.File f) throws DataIOException
f - the file to read the table fromDataIOExceptionTable readTable(java.io.InputStream is) throws DataIOException
is - the InputStream to read the table fromDataIOException