gpt4 book ai didi

java - Java 中的 RSS 提要 URL 验证

转载 作者:行者123 更新时间:2023-12-01 04:34:26 24 4
gpt4 key购买 nike

我需要检查 RSS 提要 URL 验证。我有一个 url,现在我需要检查该 url 是否仅适用于 RSS feed,如何在 core java 中检查它?请帮忙

最佳答案

我知道那是 3 年前的事了),但这是我的代码。使用罗马图书馆。 Using ROME to read a syndication feed

public boolean romeLibraryExample(String address) {
boolean ok = false;
try{
URL url = new URL(address);
HttpURLConnection httpcon = (HttpURLConnection)url.openConnection();
SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = input.build(new XmlReader(url));
ok = true;
} catch (Exception exc){
exc.printStackTrace();
}
return ok;
}

关于java - Java 中的 RSS 提要 URL 验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17524650/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com