我需要创建方法,可以从这个网站下载2个最新的.xml文件(或者只是从这些文件中提取URL): http://rss.nbp.pl/kursy/xml2/2015/a/。我知道如何使用speciefied URL,但我不知道如何自动下载最新的文件。
其实我有这个:
URL website = new URL(xmlFileUrl);
ReadableByteChannel rbc = Channels.newChannel(website.openStream());
FileOutputStream fos = new FileOutputStream("src/com/sh00x/files/kursy2.xml");
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
感谢您的帮助, 问候