public static void foo() {
try {
URL url = new URL("http://www.webservicex.net/globalweather.asmx?wsdl");
File file = new File("d:/tmp/3.wsdl");
FileUtils.copyURLToFile(url, file);
} catch (IOException e) {
e.printStackTrace();
}
}
引用的包为
import java.net.URL;
import org.apache.commons.io.FileUtils;
FileUtils还有很多功能,很强大。