将XML数据转换为Java JTable

时间:2013-11-18 23:40:12

标签: java xml parsing

我有以下XML文件

?xml version="1.0"?>
    <Schedule> 
            <Lesson>
                    <Title>Maths</Title>
                    <Lecture Classroom="100">
                        <Day>Tuesday</Day>
                        <Time>12:00</Time>
                    </Lecture>
                    <Lecture Classroom="101">
                        <Day>Thursday</Day>
                        <Time>11:00</Time>
                    </Lecture>
            </Lesson>
            <Lesson>
                    <Title>Scientific Computing</Title>
                    <Lecture Classroom="103">
                        <Day>Monday</Day>
                        <Time>09:00</Time>
                    </Lecture>
            </Lesson>
}

我想将它解析为Java JFrame,我想在JTable中显示数据。我也希望使用JCombo滚动并选择特定日期的数据,以及能够在我的xml中添加数据通过JTextfield。任何帮助表示赞赏!!!

I give you the design of my frame:

0 个答案:

没有答案