This will load a document from a file. @param filename The name of the file to load. @return The document that was loaded. @throws IOException If there is an error reading from the stream.
(String filename)
| 118 | * @throws IOException If there is an error reading from the stream. |
| 119 | */ |
| 120 | public static FDFDocument loadXFDF(String filename) throws IOException |
| 121 | { |
| 122 | return Loader.loadXFDF(new File(filename)); |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * This will load a document from a file. |