コード例 #1
0
ファイル: GoTree.java プロジェクト: redaktroll/jvarkit
 public static GoTree parse(String uri) throws IOException, XMLStreamException {
   BufferedReader r = IOUtils.openURIForBufferedReading(uri);
   GoTree t = parse(r);
   r.close();
   return t;
 }
コード例 #2
0
ファイル: GoTree.java プロジェクト: redaktroll/jvarkit
 public static GoTree parse(File file) throws IOException, XMLStreamException {
   BufferedReader r = IOUtils.openFileForBufferedReading(file);
   GoTree t = parse(r);
   r.close();
   return t;
 }