Changeset 31aa1ee
- Timestamp:
- Apr 13, 2011 4:03:30 PM (14 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master
- Children:
- f93a65c
- Parents:
- 72176de2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
axis/ParseTopdl.java
r72176de2 r31aa1ee 546 546 static public void main(String args[]) { 547 547 ParseTopdl p = null; 548 549 System.out.println("Checking file: " + args[0]); 548 550 try { 549 551 p = new ParseTopdl(new FileInputStream(new File(args[0])), 550 "experiment", true); 552 "experiment", false); 553 System.out.println("Parse OK"); 551 554 } 552 555 catch (ParserConfigurationException e) { 553 System.err.println( e);556 System.err.println("Parse failed: " + e); 554 557 } 555 558 catch (SAXException e) { 556 System.err.println( e);559 System.err.println("Parse failed: " + e); 557 560 } 558 561 catch (IOException e) { 559 System.err.println( e);562 System.err.println("Parse failed: " + e); 560 563 } 561 564 }
Note: See TracChangeset
for help on using the changeset viewer.