403404405406407408409410411412413
} } kml.marshal(outputFile); logger.info("KML file published. Location:" + outputFile.getAbsolutePath()); return outputFile; }
7980818283848586878889
// Create a string writer to contain the kml string StringWriter writer = new StringWriter(); // marshal the string writer to get a string out to the kml object kml.marshal(writer); // return the kml to the client return writer.toString(); }