XML « JList « Java Swing Q&A





1. Using java, how would I read an xml file from a website then put the data from the xml file in a JList?    stackoverflow.com

Here's the idea of the xml file:

<date>
<aug30>
    <item1>This is an item for August 30</item1>
    <item2>This is another item for August 30</item2>
</aug30>
<aug31>
    <item1>This ...

2. JList and XML    forums.oracle.com

3. Using XML as datasource of JList    forums.oracle.com

Hi, I new with java and trying to figure out how to create guis with netbeans 5.5. I have dragged and dropped a jlist but I couldn't find out how to put a datasource on it. There were ways to use a database (create a connection then connect to it) but I want to use an xml file as datasource instead ...