Я читаю задания stackoverflow и получаю элементы. Это образец элемента:
<item>
<guid isPermaLink="false">205774</guid>
<link>https://stackoverflow.com/jobs/205774/java-developer-creative-dock-sro?a=170Dh8tfEzVm</link>
<a10:author>
<a10:name>Creative Dock s.r.o.</a10:name>
</a10:author>
<category>java</category>
<category>spring</category>
<category>spring-boot</category>
<category>docker</category>
<category>kubernetes</category>
<title>JAVA DEVELOPER at Creative Dock s.r.o. (Praha 5, Czechia)</title>
<description><p>Are you a&nbsp;<strong>battlehardened Java guy,</strong> looking forward to&nbsp;learning new technologies? Are you interested in&nbsp;being in&nbsp;a&nbsp;place, where awesome startups are born? Startups that directly impact everyday lives? If&nbsp;your answers are &ldquo;yes&rdquo;, read on...</p><br /><p><strong>Who are we&nbsp;looking for?</strong></p><br /><p><strong>A&nbsp;backend engineer for our new R&amp;D team.</strong> There&rsquo;s plenty of&nbsp;validated &ldquo;smart&rdquo; projects on&nbsp;our table. Take ownership of&nbsp;one, join the team, and build a&nbsp;working solution (microservices) from scratch&nbsp;-&nbsp;we&nbsp;know you always wanted to&nbsp;do this.</p><br /><p>We&nbsp;are currently looking at&nbsp;<strong>Spring Boot, Docker, Kubernetes</strong> for the technologies (but are <strong>open to&nbsp;let you change our minds</strong>).</p><br /><p>Let&rsquo;s be&nbsp;honest: we&nbsp;don&rsquo;t look for total newbies. On&nbsp;the other hand, we&rsquo;ll always be&nbsp;there to&nbsp;help you out with everything.</p><br /><p>Have we caught&nbsp;your attention? Great! Send us&nbsp;a&nbsp;link to&nbsp;something you&rsquo;re <strong>proud of.</strong> May it&nbsp;be your Website or&nbsp;Github. Linkedin will also do&nbsp;the trick&nbsp; And we`ll get in touch!</p></description>
<pubDate>Mon, 18 Mar 2019 10:18:53 Z</pubDate>
<a10:updated>2019-03-18T10:18:53Z</a10:updated>
<location xmlns="http://stackoverflow.com/jobs/">Praha 5, Czechia</location>
</item>
Я пытаюсь разобрать его с этим кодом:
URL feedUrl = new URL("https://stackoverflow.com/jobs/feed");
SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = input.build(new XmlReader(feedUrl));
но вернулось:
Title: JAVA DEVELOPER at Creative Dock s.r.o. (Praha 5, Czechia)
Unique Identifier: 205774
Author: null
Updated Date: null
Category: java
Category: spring
Category: spring-boot
Category: docker
Category: kubernetes
Полагаю, следует добавить пространство имен (), чтобы исправить это, но я понятия не имею, как это сделать.