xmlDoc--是你的xml(用的是JDom)
 
ByteArrayOutputStream byteRep = new ByteArrayOutputStream();
        Format format = Format.getPrettyFormat();
        format.setEncoding(encoding);
        XMLOutputter docWriter = new XMLOutputter(format);
        try
        {
            docWriter.output(xmlDoc, byteRep);
        }
        catch (Exception e)
        {
        }
        return byteRep.toString();