Example #1
0
 public void toFile(String file) {
   try {
     PrintStream ps = new PrintStream(new FileOutputStream(file), true);
     ps.print(sw.toString());
   } catch (Exception e) {
     System.err.println(e.toString());
   }
 }
Example #2
0
 public String getXSAMS() {
   return sw.toString();
 }