-1

我已经从 jar 中修改了 java 代码,编译后,我编写的代码不起作用。我尝试反编译,发现它说的是以下错误:

未解决的编译问题

范围内无法访问 DirectDelivDetail 类型的封闭实例

this$0 无法解析或不是字段

DirectDelivDetail 类型的方法setComments()不可见

我知道有很多讨论这个问题的线程,但我没有找到解决方案。好的,这是代码:

public class DirectDelivDetail extends CMSApplet implements
    LookupHandler {

    private MultiLineEditor comments = null;
    private CMSShipment shipment = null;

    private void setComments() {
        try {
            if (this.shipment != null) {
                this.shipment.setComments(this.comments.getText());
            }
        } catch (BusinessRuleException bre) {
            JOptionPane.showMessageDialog(null, res.getString(bre.getMessage()));

            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    DirectDelivDetail.this.comments.requestFocus();
                }
            });
        } finally {
            checkFields();
        }
    }

    private JPanel createDetailPanel() {
        this.comments = new MultiLineEditor();
        this.comments.addFocusListener(new FocusAdapter() {
            public void focusLost(FocusEvent e) {
                if (!e.isTemporary()) {
                    DirectDelivDetail.this.setComments();
                }
            }
        });
        return detailPanel;
    }
}

编译后代码更改。这是以下变化。

private JPanel createDetailPanel() {
    this.comments = new MultiLineEditor();
    this.comments.addFocusListener(new FocusAdapter() {
        public void focusLost(FocusEvent e) {
            throw new Error("Unresolved compilation problems: \n\tNo enclosing instance of the type DirectDelivDetail is accessible in scope\n\tThe method checkCancelCommand(FocusEvent) from the type DirectDelivDetail is not visible\n\tthis$0 cannot be resolved or is not a field\n\tNo enclosing instance of the type DirectDelivDetail is accessible in scope\n\tThe method setComments() from the type DirectDelivDetail is not visible\n");
        }
    });
    return detailPanel;
}
4

1 回答 1

2

您的第一个错误是您已经允许/告诉您正在使用的 IDE 运行其中包含编译错误的应用程序。

不要那样做!

取消选中首选项或其他。在尝试运行程序之前,您需要修复编译错误。

如果你这样做,就不需要反编译......而且你不会看到这样做导致的额外令人困惑的“伪影”。


实际的编译错误似乎是说这DirectDelivDetail.this是无效的。但它看起来好像它应该是。但是,我不清楚源代码或错误消息是真实的......还是反编译/重新编译的人工制品。(你的问题不清楚你是如何产生这些错误消息的。)所以我认为最好的办法是向我们展示你通过编译原始源代码得到的原始错误消息......不是东西已由反编译器重建。

于 2013-06-26T05:10:45.770 回答