25
मैं जावा का उपयोग कर रहा हूं, और एक साधारण, मानक-अनुरूप आरएसएस फ़ीड उत्पन्न करने की आवश्यकता है। मैं इसके बारे में कैसे जा सकता हूं?जावा के साथ आरएसएस फ़ीड कैसे लिखें?
मैं जावा का उपयोग कर रहा हूं, और एक साधारण, मानक-अनुरूप आरएसएस फ़ीड उत्पन्न करने की आवश्यकता है। मैं इसके बारे में कैसे जा सकता हूं?जावा के साथ आरएसएस फ़ीड कैसे लिखें?
मैं Rome उपयोग करने की अनुशंसा:
// Feed header
SyndFeed feed = new SyndFeedImpl();
feed.setFeedType("rss_2.0");
feed.setTitle("Sample Feed");
feed.setLink("http://example.com/");
// Feed entries
List entries = new ArrayList();
feed.setEntries(entries);
SyndEntry entry = new SyndEntryImpl();
entry.setTitle("Entry #1");
entry.setLink("http://example.com/post/1");
SyndContent description = new SyndContentImpl();
description.setType("text/plain");
description.setValue("There is text in here.");
entry.setDescription(description);
entries.add(entry);
// Write the feed to XML
StringWriter writer = new StringWriter();
new SyndFeedOutput().output(feed, writer);
System.out.println(writer.toString());
मुझे नहीं अब इस में किसी भी डाउनलोड देखें। कोई सलाह? – Vik
@ विक, लिंक बदल गया है इसलिए मैंने अपना उत्तर सही यूआरएल के साथ अपडेट कर दिया है। –
उस लिंक में केवल स्रोत कोड प्रतीत होता है। क्या कोई नहीं है .jar? –