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()); } }
public String getXSAMS() { return sw.toString(); }