向编写XML文件的Java程序添加GUI功能

向编写XML文件的Java程序添加GUI功能,java,xml,swing,Java,Xml,Swing,我这里有两门课。第一个是将数据写入XML文件的,第二个是使用JFrame的,并使用按钮上的操作处理程序从三个文本字段收集数据 我的两个问题: 1)GUI是空白的-我已经有一段时间没有使用JFrame了,请耐心等待。 2)我需要从文本框中提取3个字符串,并将它们插入我的insertNewEntry()函数中。属性将只是一个整数,我将递增,元素和文档将分别为“rootElement”和“doc”。 非常感谢你的帮助 import java.io.File; import java.util.*;

我这里有两门课。第一个是将数据写入XML文件的,第二个是使用JFrame的,并使用按钮上的操作处理程序从三个文本字段收集数据

我的两个问题:

1)GUI是空白的-我已经有一段时间没有使用JFrame了,请耐心等待。

2)我需要从文本框中提取3个字符串,并将它们插入我的insertNewEntry()函数中。属性将只是一个整数,我将递增,元素和文档将分别为“rootElement”和“doc”。

非常感谢你的帮助

import java.io.File;
import java.util.*;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import javax.swing.*;

import java.awt.*;

import org.w3c.dom.Document;
import org.w3c.dom.Element;

@SuppressWarnings("unused")
public class createXML extends JFrame {

    private static final long serialVersionUID = 1L;

    public static void main(String [] args) throws ParserConfigurationException, TransformerException{

        String address = "/home/leo/workspace/Test/Files/src/xmlOutput";
        Scanner s = new Scanner(System.in);
        int ID = 0;

        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        DocumentBuilder db = dbf.newDocumentBuilder();
        Document doc = db.newDocument();

        Element rootElement = doc.createElement("Company");
        doc.appendChild(rootElement);

        GUI gui = new GUI();

        gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        gui.setSize(500, 300);
        gui.setVisible(true);


    //  insertNewEntry(rootElement, doc, ID, firstName, lastName, salary);


        TransformerFactory tf = TransformerFactory.newInstance();
        Transformer t = tf.newTransformer();

        DOMSource source = new DOMSource(doc);
        StreamResult sr = new StreamResult(new File(address));

        t.transform(source, sr);

        System.out.println("File created.");

    }

    private static void insertNewEntry(Element rootElement, Document doc, String attr, String fName, String lName, String sal){


        Element employee = doc.createElement("Employee");
        employee.setAttribute("ID", attr);
        rootElement.appendChild(employee);

        Element firstName = doc.createElement("First_Name");
        firstName.setTextContent(fName);
        employee.appendChild(firstName);

        Element lastName = doc.createElement("Last_Name");
        lastName.setTextContent(lName);
        employee.appendChild(lastName);

        Element salary = doc.createElement("Salary");
        salary.setTextContent(sal);
        employee.appendChild(salary);

    }

}
下节课

import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;

@SuppressWarnings("unused")
public class GUI extends JFrame {

    private static final long serialVersionUID = 1L;

    private JLabel item;
    private JTextField firstName;
    private JTextField lastName;
    private JTextField salary;
    private JButton button1;

    GUI(){

    super("XML Writer");

    JPanel panel = new JPanel();
    panel.setLayout(new GridLayout(0,2));

    JLabel fn = new JLabel("First Name");
    firstName = new JTextField();
    panel.add(fn);
    panel.add(firstName);

    JLabel ln = new JLabel("Last Name");
    lastName = new JTextField();
    panel.add(ln);
    panel.add(lastName);

    JLabel s = new JLabel("Salary");
    salary = new JTextField();
    panel.add(s);
    panel.add(salary);

    button1 = new JButton("Click Me!");
    button1.setSize(20, 10);
    panel.add(button1);

    Handler handler = new Handler();
    button1.addActionListener(handler);

    }

    private class Handler implements ActionListener{

        public void actionPerformed(ActionEvent event){

            String fn = ""; String ln = ""; String sal = "";

            fn = firstName.getText();
            ln = lastName.getText();
            sal = salary.getText();

            JOptionPane.showMessageDialog(null, "Information stored in XML file");

        }


    }

}

让我们从一个明显的问题开始

您创建一个
JPanel
,将组件添加到,但决不将该
面板添加到任何内容中

GUI() {

    super("XML Writer");

    JPanel panel = new JPanel();
    panel.setLayout(new GridLayout(0, 2));

    JLabel fn = new JLabel("First Name");
    firstName = new JTextField();
    panel.add(fn);
    panel.add(firstName);

    JLabel ln = new JLabel("Last Name");
    lastName = new JTextField();
    panel.add(ln);
    panel.add(lastName);

    JLabel s = new JLabel("Salary");
    salary = new JTextField();
    panel.add(s);
    panel.add(salary);

    button1 = new JButton("Click Me!");
    button1.setSize(20, 10);
    panel.add(button1);

    Handler handler = new Handler();
    button1.addActionListener(handler);

    //...???
}
尝试将
面板添加到
GUI

    add(panel);
}
另外,您的
CreateXML
类不需要从
JFrame
扩展,它甚至不使用任何功能

你的第二个问题是意见问题

基本解决方案是调用
static
createXML.insertNewEntry(…)
方法,但是您的
GUI
缺少一些使其工作所需的信息

就我个人而言,我会创建一个“模型”
界面
,其中包含
文档
,以及一个简化的
插入
方法,该方法只从GUI中获取所需的字段

使用模型示例更新

基本模型结构

public interface EmployeeModel {

    public void insert(String fName, String lName, String sal);

}

public interface XMLEmployeeModel extends EmployeeModel {

    public void save(File file) throws IOException;

}

public abstract class AbstractXMLEmployeeModel implements XMLEmployeeModel {

    private Document doc;

    public AbstractXMLEmployeeModel(Document doc) {
        this.doc = doc;
    }

    public Document getDoc() {
        return doc;
    }

    @Override
    public void save(File file) throws IOException {
        try {
            TransformerFactory tf = TransformerFactory.newInstance();
            Transformer t = tf.newTransformer();

            DOMSource source = new DOMSource(doc);
            StreamResult sr = new StreamResult(file);

            t.transform(source, sr);
        } catch (TransformerFactoryConfigurationError | TransformerException exp) {
            exp.printStackTrace();
            throw new IOException("Failed to save Employee model", exp);
        }
    }

}

public class DefaultXMLEmployeeModel extends AbstractXMLEmployeeModel {

    private int count = 0;

    public DefaultXMLEmployeeModel(Document doc) {
        super(doc);
    }

    @Override
    public void insert(String fName, String lName, String sal) {
        Document doc = getDoc();
        Element root = doc.getDocumentElement();

        Element employee = doc.createElement("Employee");
        employee.setAttribute("ID", Integer.toString(count++));
        root.appendChild(employee);

        Element firstName = doc.createElement("First_Name");
        firstName.setTextContent(fName);
        employee.appendChild(firstName);

        Element lastName = doc.createElement("Last_Name");
        lastName.setTextContent(lName);
        employee.appendChild(lastName);

        Element salary = doc.createElement("Salary");
        salary.setTextContent(sal);
        employee.appendChild(salary);
    }

}
以及
GUI
使用它的示例

public static class GUI extends JFrame {
    //...
    private XMLEmployeeModel model;

    GUI(XMLEmployeeModel model) {

        super("XML Writer");

        this.model = model;
        //...
    }

    private class Handler implements ActionListener {

        public void actionPerformed(ActionEvent event) {

            String fn = "";
            String ln = "";
            String sal = "";

            fn = firstName.getText();
            ln = lastName.getText();
            sal = salary.getText();

            model.insert(fn, ln, sal, sal);

            JOptionPane.showMessageDialog(null, "Information stored in XML file");

        }

    }

}

createXML
不需要从
JFrame
扩展…非常感谢!是的,我知道第一个问题是因为一个愚蠢的错误——很久没有和JFrame玩过了。我想我理解你在第二个问题上的意思——我正在努力。这非常有帮助。再次感谢!如果我能放弃更多的选票,我会的。