创建rss1(用rome组件)

1××××××××××jar包:rome-0.9.jar jdom-1.0.jar
2×××××××××××
生成
public void doRenewAllRssInfo()
{
this.bildXML(savePath, temp.getModel(), list, temp.getName());}


private void bildXML(String filePath, String channel, List list, String fileName)
{
feed = new SyndFeedImpl();
feed.setFeedType("rss_2.0");
entries = new ArrayList();

Properties properties = UtilProperties.getProperties("url.properties");
String urlpath = properties.getProperty("urlpath");

for (int i = 0; i < list.size(); i++)
{
ChannelItem item = new ChannelItem();
RssInfo rssInfo = (RssInfo) list.get(i);

item.setTitle(rssInfo.getChannelItem().getTitle());

if ("Product".equals(channel))
{
item.setLink(urlpath + "/productInfo.do?pinfoId=" + rssInfo.getChannelItem().getChannelId());
}
else
{
item.setLink(urlpath + "/newsIndex.do?method=view&newsId=" + rssInfo.getChannelItem().getChannelId());
}

item.setDescription(rssInfo.getChannelItem().getDescription());
item.setPubDate(rssInfo.getChannelItem().getPubDate());
item.setCategory(rssInfo.getName());
item.setAuthor("Hwawei Website");

buildItems(item);
}
buildChannel(
fileName + "- HUAWEI Communication",
RssContants.HUAWEI_WEBSITE_URL,
"Hwawei Website Rss Feed",
"zh-cn",
new Date(),
"Huawei Communication Technologies Co., 2009 All rights reserved");
try
{

buildChannel(filePath, fileName);
}
catch (Exception e)
{

e.printStackTrace();
}
}
private void buildChannel(
String title,
String link,
String description,
String language,
Date pubDate,
String copyright)
throws RuntimeException
{
feed.setTitle(title);
feed.setLink(link);
feed.setDescription(description);
feed.setLanguage(language);
feed.setPublishedDate(pubDate);
feed.setCopyright(copyright);
}
private void buildItems(ChannelItem item) throws RuntimeException
{
entry = new SyndEntryImpl();
entry.setTitle(item.getTitle());
entry.setLink(item.getLink());
SyndContent content = new SyndContentImpl();
content.setType("text/plain");
content.setValue(item.getDescription());
entry.setDescription(content);
Date d = new Date(item.getPubDate());
entry.setPublishedDate(d);
SyndCategory cate = new SyndCategoryImpl();
cate.setName(item.getCategory());
List cateList = new ArrayList();
cateList.add(cate);
entry.setCategories(cateList);
entry.setAuthor(item.getAuthor());
entries.add(entry);
}
public void buildChannel(String filePath, String fileName) throws Exception
{
feed.setEntries(entries);
SyndFeedOutput output = new SyndFeedOutput();
Writer writer;

if (!new File(filePath).isDirectory())
{
new File(filePath).mkdirs();
}
// java.text.SimpleDateFormat df =
// new java.text.SimpleDateFormat("yyMMdd");
// String newname =
// df.format(java.util.Calendar.getInstance().getTime());

fileName = StringUtil.replaceString(fileName, " ", "");
fileName = fileName + ".xml";
FileOutputStream streamOut = new FileOutputStream(filePath + File.separator + fileName);

writer = new OutputStreamWriter(streamOut, "UTF-8");
output.output(feed, writer);
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring Boot提供了许多属性来配置应用程序,包括抓取RSS的功能。您可以在application.properties或application.yml文件中指定这些属性,也可以通过命令行开关来配置。 要抓取RSS,您可以使用Spring Boot提供的相关类和注解。首先,确保您的项目中已经添加了相关的依赖。在Gradle中,您可以在build.gradle文件中添加以下配置: ```groovy dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'rome:rome' } ``` 然后,您可以创建一个Controller类来处理抓取RSS的请求。使用`@RestController`注解标记该类,并使用`@GetMapping`注解指定处理GET请求的方法。在方法中,您可以使用Rome库来抓取和解析RSS。 ```java import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import com.rometools.rome.feed.synd.SyndFeed; import com.rometools.rome.io.SyndFeedInput; import com.rometools.rome.io.XmlReader; @RestController public class RssController { @GetMapping("/rss") public SyndFeed getRssFeed() { try { String rssUrl = "https://example.com/rss-feed"; // 替换为实际的RSS源URL SyndFeedInput input = new SyndFeedInput(); SyndFeed feed = input.build(new XmlReader(new URL(rssUrl))); return feed; } catch (Exception e) { // 处理异常 return null; } } } ``` 在上面的示例中,我们创建了一个`RssController`类,并在`/rss`路径上定义了一个GET请求的处理方法。该方法使用Rome库来抓取和解析指定的RSS源,并返回`SyndFeed`对象。 请注意,上述示例仅提供了一个基本的框架,您可能需要根据实际需求进行进一步的处理和定制。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值