我是 Android 开发的新手。我想从Shoutcast Server获取元数据,并发现streamcraper是最容易使用的。但我的问题是,我不知道如何使用它。主页本身仅显示如何使用它:
import java.net.URI;
import java.util.List;
import net.moraleboost.streamscraper.Stream;
import net.moraleboost.streamscraper.Scraper;
import net.moraleboost.streamscraper.scraper.IceCastScraper;
public class Harvester {
public static void main(String[] args) throws Exception {
Scraper scraper = new IceCastScraper();
List streams = scraper.scrape(new URI("http://host:port/"));
for (Stream stream: streams) {
System.out.println("Song Title: " + stream.getCurrentSong());
System.out.println("URI: " + stream.getUri());
}
}
}
在任何地方搜索,没有发现如何使用它的项目示例。我希望你们中的一个可以发布如何使用它的代码,或者为它制作一个教程。