261262263264265266267268
try { StringWriter writer = new StringWriter(); this.write(writer); return writer.toString(); } catch (IOException e) { throw new ExecutionException(e); } }
154155156157158159160161