0

在我的 Java 程序中,我必须输出一个带有按钮的 HTML 文件,例如发送或显示特定的电子邮件,该文件保存在这个 Java 程序中(将在服务器上运行)。如何链接这个 HTML 文件,以便在单击按钮时,它实际上会调用 java 程序中的一个方法(例如发送电子邮件方法)并影响某些字段,例如存储电子邮件的列表?如果没有办法做到这一点,我怎样才能实现我想做的事情?谢谢你。

这是我用于 GUI 的代码,但我不想要 GUI。我想把所有这些代码变成一个输出的 HTML 文件。所以基本上,代替这些代码,我需要输出一个与此 GUI 完全相同的 HTML 文件。我需要输出网页的原因是当程序启动到服务器上时,GUI 不是那么方便。我相信该程序将始终运行,并且主要我有一个 timeTask 每天运行一次该例程。

public void createEmailPanel(String name, final Email email) {
    final JPanel emailPanel = new JPanel();
    emailPanel.setLayout(null);
    emailPanel.setSize(900, 50);
    panel.add(emailPanel);

    String emails = "";
    for(String a : email.getList()) {
        emails = emails + a + " ";
    }

    JLabel labelName = new JLabel(emails);
    labelName.setLocation(0, 0);
    labelName.setSize(700, 30);
    emailPanel.add(labelName);

    JButton display = new JButton("Display Email");
    display.setLocation(0, 50);
    display.setSize(200, 30);
    display.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            JEditorPane HtmlPane= new JEditorPane();
            boolean fail = false;
            try {
                File temp = File.createTempFile("temp", ".html");
                BufferedWriter out = new BufferedWriter(new FileWriter(temp));
                out.write(email.getBody());
                out.close();

                HtmlPane.setContentType("text/html");
                HtmlPane.setEditable(false);
                try {
                    HtmlPane.setPage(temp.toURI().toURL());
                } catch (MalformedURLException a) {
                    fail = true;
                    JPanel p = new JPanel();
                    p.setSize(500, 200);
                    p.setLayout(null);

                    JLabel labelName = new JLabel("Error displaying emails");
                    labelName.setLocation(0, 0);
                    labelName.setSize(700, 30);
                    p.add(labelName);

                    JFrame f = new JFrame();
                    f.setSize(500, 200);
                    f.add(p);
                    f.setVisible(true);
                }
                JScrollPane jsp=new JScrollPane(HtmlPane);
                JFrame f = new JFrame();
                f.setSize(800, 500);
                f.add(jsp);
                f.setVisible(true);
                temp.delete();
            } catch (IOException e1) {
                if(fail) {
                    JPanel p = new JPanel();
                    p.setSize(500, 200);
                    p.setLayout(null);

                    JLabel labelName = new JLabel("Error displaying emails");
                    labelName.setLocation(0, 0);
                    labelName.setSize(700, 30);
                    p.add(labelName);

                    JFrame f = new JFrame();
                    f.setSize(500, 200);
                    f.add(p);
                    f.setVisible(true);
                }
            }

        }
    });
    emailPanel.add(display);


    JButton sendRecipient = new JButton("Send Email to Recipients");
    sendRecipient.setLocation(440, 50);
    sendRecipient.setSize(200, 30);
    sendRecipient.addActionListener(new ActionListener(){
        public void actionPerformed(ActionEvent e) {
            email.sendEmailToRecipients();
            queue.remove(email);
            panel.remove(emailPanel);
            JPanel pane = new JPanel();
            pane.setSize(900, 50);
            panel.add(pane);
            JLabel labe = new JLabel("Email sent to recipients.");
            labe.setSize(900, 50);
            labe.setHorizontalAlignment(0);
            pane.add(labe);
            frame.validate();
            frame.repaint();
        }
    });
    emailPanel.add(sendRecipient);

email 是一个 Email 对象,它有一个使用 JavaMail 的 sendEmailRecipient 方法。此外,电子邮件的正文也是 HTML,在这里可能无关紧要。

4

0 回答 0