public Action colorAction = new AbstractAction("Font Color", new ImageIcon(
        getClass().getResource("/img/color.png"))) {
    public void actionPerformed(ActionEvent e) {
        colorB_actionPerformed(e);
    }
};

public void colorB_actionPerformed(ActionEvent e) {
    Color c = JColorChooser.showDialog(getRightPanel(), "Font color",
            Color.CYAN);
    if (c == null)
        return;
    new StyledEditorKit.ForegroundAction("", c).actionPerformed(e);
}


上面是我用来显示“颜色选择器”对话框的代码。我的问题是,我什至从未开始运行或编译程序。但是颜色选择器对话框会自动出现吗?

public void linkActionB_actionPerformed(ActionEvent e) {
    String value = JOptionPane.showInputDialog(getJPanel(), "Enter URL :");

    String aTag = "<a";
    aTag += " href=\"" + value + "\"";

    aTag += ">" + value + "</a>";
    if (editor.getCaretPosition() == document.getLength())
        aTag += "&nbsp;";
    editor.replaceSelection("");
    try {
        editorKit.insertHTML(document, editor.getCaretPosition(), aTag, 0,
                0, HTML.Tag.A);
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}


当我还在编码时,显示链接对话框也会自动出现。任何想法?

最佳答案

是的,我敢打赌,您正在使用某种类型的IDE,并且您有一些仍在运行的过去运行或调试会话的实例。检查并关闭所有正在运行/调试的JVM,并从新开始。

09-26 21:31