-2

関数を呼び出すときにエラーが発生しLoadInput()ます...

private void loadInput() {
        String fn;
        FileDialog fd= new FileDialog((Frame)this.getParent(), "Load RS-274D/X file...", FileDialog.LOAD);

        fd.setVisible(true);

        fn = fd.getFile();

        if (fn != null)
            readInput(fn);

    }

そしてここに例外があります:

Exception in thread "AWT-EventQueue-1" java.lang.Error: Unresolved compilation problem: 
    The constructor FileDialog(RS274X, String, int) is undefined

    at RS274X.loadInput(RS274X.java:251)
    at RS274X.actionPerformed(RS274X.java:165)
4

1 に答える 1

0

このエラーは、FileDialogクラスに次のコンストラクターがないことを明確に示しています。

FileDialog(RS274X, String, int)

クラスに必要なコンストラクターが含まれていること、およびオブジェクトを作成するときに適切なパラメーターを送信することを確認してください。

于 2012-10-12T08:02:00.243 に答える