0

Java で sqlite を使用すると問題が発生します。私のアプリケーションは、最初の起動時に、jarファイルがあるフォルダーにフォルダーを作成し、そのフォルダーに私のsqlite dbを配置します。問題は、Netbeans からプロジェクトを実行すると、すべて問題なく正常に動作することですが、jar をビルドしてそこから実行しようとすると、アプリケーションはフォルダーを作成しますが、内部のデータベースは作成せず、プログラムがクラッシュします。なんで?db とそのフォルダーを作成するコードは次のとおりです。

public Db()
{
    if (!checker())
    {
        File f = new File("dbecprp");
        f.mkdir();
        try {
            String url = "jdbc:sqlite:dbecprp/dbecprp.db";
            Class.forName("org.sqlite.JDBC");
            conn = (Connection)DriverManager.getConnection(url);
            s = conn.createStatement();
            s.executeUpdate("CREATE TABLE Utente (idUtente integer primary key autoincrement, nome varchar(45) not null, email varchar(45) not null, password varchar(15) not null);");
            s.executeUpdate("CREATE TABLE Prodotto (idProdotto integer primary key autoincrement, tipologia varchar(3) not null, titolo varchar(45) not null, creatore varchar(45) not null, prezzo float not null, descrizione varchar(45), qta_magazzino int(3) not null);");
            s.executeUpdate("CREATE TABLE Ordine (idOrdine integer primary key autoincrement, qta_prodotto int(3) not null, totale_ordine float not null, data_ordine long not null, nome_consegna varchar(45) not null, indirizzo_spedizione varchar(150) not null, idUtente int not null, idProdotto int not null, FOREIGN KEY (idUtente) REFERENCES Utente(idUtente), FOREIGN KEY (idProdotto) REFERENCES Prodotto(idProdotto));");
        } catch (ClassNotFoundException | SQLException ex) {
            JOptionPane.showMessageDialog(null, "Db creation failed. Program will terminate.");
            System.exit(1);
        }
        filler();
    }
}

public boolean checker()
{
    File f = new File("dbecprp");
    return f.isDirectory();
}

クリーン&ビルドの出力は次のとおりです。

    ant -f C:\\Users\\paolo2\\Documents\\NetBeansProjects\\Server clean jar
init:
deps-clean:
Updating property file: C:\Users\paolo2\Documents\NetBeansProjects\Server\build\built-clean.properties
Deleting directory C:\Users\paolo2\Documents\NetBeansProjects\Server\build
clean:
init:
deps-jar:
Created dir: C:\Users\paolo2\Documents\NetBeansProjects\Server\build
Updating property file: C:\Users\paolo2\Documents\NetBeansProjects\Server\build\built-jar.properties
Created dir: C:\Users\paolo2\Documents\NetBeansProjects\Server\build\classes
Created dir: C:\Users\paolo2\Documents\NetBeansProjects\Server\build\empty
Created dir: C:\Users\paolo2\Documents\NetBeansProjects\Server\build\generated-sources\ap-source-output
Compiling 4 source files to C:\Users\paolo2\Documents\NetBeansProjects\Server\build\classes
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
compile:
Created dir: C:\Users\paolo2\Documents\NetBeansProjects\Server\dist
Copying 1 file to C:\Users\paolo2\Documents\NetBeansProjects\Server\build
Not copying library C:\Users\paolo2\Documents\NetBeansProjects\Server\dist\lib\sqlite-jdbc-3.7.2.jar , it can't be read.
Copy libraries to C:\Users\paolo2\Documents\NetBeansProjects\Server\dist\lib.
Building jar: C:\Users\paolo2\Documents\NetBeansProjects\Server\dist\Server.jar
To run this application from the command line without Ant, try:
java -jar "C:\Users\paolo2\Documents\NetBeansProjects\Server\dist\Server.jar"
jar:
BUILD SUCCESSFUL (total time: 7 seconds)

含まれていない sqlite-jdbc-3.7.2.jar が問題なのかもしれません...以前は手動で追加していましたが、それが原因で機能しない可能性があります。

4

1 に答える 1