1. ホーム
  2. java

[解決済み] java - 複製クラス

2022-02-07 10:35:07

質問

以下のコードで重複クラスエラーが発生するのですが、なぜでしょうか?

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package database_console;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;


/**
 *
 * @author davidsonr
 */
public class DBConnect {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
    }
}

Netbeans は DBConnect を重複クラスエラーで赤くハイライトします。

解決方法は?

これは、netbeans の既知の問題です。 BUG 226360


Netbeansのキャッシュをクリアするとよいかもしれません。

に移動します。 Help -> About と表示されます。

Cacheディレクトリです。 PathtoDirectory

NetBeansを終了し、指定されたディレクトリに移動し、すべてを削除します。