Java GUI建议

时间:2016-03-26 20:46:13

标签: java xml user-interface parsing

我有一个使用SAX解析XML文件的java文件似乎工作正常。

以下是我的SAX.java文件:

 public class SAX extends DefaultHandler{
     private final List<Student> studentList = new ArrayList<Student>();
     private String tempVal;
     private Student tempStudent;

public void runExample(){
    parseDocument();
    outputList();
}

private void parseDocument(){
    try {
        // get a factory object
        SAXParserFactory spf = SAXParserFactory.newInstance();

        // get an instance of the parser
        SAXParser sp = spf.newSAXParser();

        // parse the XML file and register this
        // class for callbacks
        sp.parse("Students.xml", this);
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}
private void outputList(){
    for(Student student : studentList){
        System.out.println(student);
    }
}

// the event handlers....
@Override
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
    // reset
    tempVal = "";
    if(qName.equalsIgnoreCase("Student")){
        // create a new Employee object
        tempStudent = new Student();
        tempStudent.setTitle(attributes.getValue("Title"));
    }
 //        System.out.println(
 //                "startElement::qName is "+qName);
}

@Override
public void characters(char []ch, int start, int length) throws SAXException{       
    tempVal = new String(ch, start, length);
 //        System.out.println("tempVal is "+tempVal);
}

@Override
public void endElement(String uri, String localname, String qName) throws SAXException {
    if(qName.equalsIgnoreCase("Student")){
        studentList.add(tempStudent);
    } else if(qName.equalsIgnoreCase("Name")){
        tempStudent.setName(tempVal);
    } else if(qName.equalsIgnoreCase("Age")){
        tempStudent.setAge(Integer.parseInt(tempVal));
    } else if(qName.equalsIgnoreCase("College")){
        tempStudent.setCollege(tempVal);
    } else if(qName.equalsIgnoreCase("School")) {
        tempStudent.setSchool(tempVal);
    }
}

public static void main(String []args){
    SAX spe = new SAX();
    spe.runExample();
}
}

但是,我被要求在GUI中呈现这一点。单击特定单选按钮并且用户单击解析时,将使用SAX解析XML文件,结果将显示在文本框中。我已经获得了GUI,它已经编码,我的问题是我对GUI的知识有限,我不知道如何整合它们中的两个。

public void actionPerformed(ActionEvent e) {
else if (e.getSource() == parseButton){
        if(saxRadioButton.isSelected()){
            // do SAX stuff
        }

我只是想找人指点我这里正确的方向。我应该单独制作SAX文件还是应该直接进入If语句。我完全迷失了。

1 个答案:

答案 0 :(得分:0)

从SAX类中获取已解析的XML,然后将其设置为所需的组件。将gui与您的进程分开并且更容易调试是有意义的。例如:

public void actionPerformed(ActionEvent e) {
    if(e.getSource().equals(parseButton)){
        if(saxRadioButton.isSelected()) {
            String result = SAX.yourParsingHere();
            yourTextArea.setText(result);
        }
    }
}