// write bytes out to a file var out = new java.io.FileOutputStream('C:\\QIE\\tmp.txt', false); var bytes = message.getBytes(); out.write(bytes); out.close();