java.lang.ClassNotFoundException: org.sqlite.JDBC error in Sample.java program from xerial

后端 未结 6 1402
无人及你
无人及你 2020-12-04 01:53

I am trying to get Xerial\'s Sample class to work in Eclipse with sqlite, but I keep getting the error \"ClassNotFoundException: org.sqlite.JDBC\"

I downloaded the s

相关标签:
6条回答
  • 2020-12-04 01:57

    One way that worked for me is to go to JRE System Library -> right clik -> build path -> configure build path -> add external jars -> select the jar and compile.

    0 讨论(0)
  • 2020-12-04 02:17

    All the above solutions works well, when you are dealing with the desktop JAVA Application. In the case of WebAPP Application, following above solutions will not work. Actually it is the issue with your App server, that is you needed to add sqlite-jar under your WEB-INF/lib and then only you will be able to run your webapp successfully.

    For doing so you can follow below steps:

    Go to:

    Project-> Properties-> Deployment Assembly-> Add-> Archives From File System -> Next -> Add

    Navigate to the folder where you have your sqlite-jar, select it and hit OK.

    Click Finish. OK.

    Done, you should be able to run your app now.

    Thanks

    0 讨论(0)
  • 2020-12-04 02:19

    first you can download sqlite-jdbc-3.8.11.2 and after add jar file in your project

    Window > Show_view > Package Explorer
    
    step-1: right click on referenced libraries
    step-2: select Built path
    step-3: configure Built path
    step-4: Add External jars file
    step-5: add sqlite-jdbc-3.8.11.2
    step-6: ok
    

    or second way useful


    your project can set the Classpath : Lib/sqlite-jdbc-3.8.11.2.jar

    1)create a folder "Lib" in your project workspace 
    2)"Lib" folder paste jar file like "sqlite-jdbc-3.8.11.2.jar"
    3)After Double click on your project file i.e. 'MANIFEST.MF'
    4)select Runtime(Bottom view panel) 
    5)plug-in Classpath(Bottom_right position) to add jar file like "Lib/sqlite-jdbc-3.8.11.2.jar"
    
    this working 100% sure..thanks
    
    0 讨论(0)
  • 2020-12-04 02:20

    As said before, add the jar File to your Project.

    For Android Studio / IntelliJ you just go this way:

    File > Project Structure >

    New Module >

    Import .JAR/.AAR Package

    Now select/add your .jar File and let IntelliJ do the rest.

    0 讨论(0)
  • 2020-12-04 02:21

    Thanks to user phew for the help/ideas.

    I missed the obvious command line instructions on Xerial's site for the Sample program. To get the program to run from the command line, I had to copy the JAR file into the same folder as the .java program. Then run the following command:

    java -classpath ".:sqlite-jdbc-(VERSION).jar" Sample

    0 讨论(0)
  • 2020-12-04 02:21

    Step 1:

    Copy sqlite library.


    Step 2:

    paste the library in 'WebContent/WEB-INF/lib' directory you can also do it by selecting 'lib' folder in eclipse and pressing Ctrl + V

    Step 3:

    Restart the server and hopefully problem should be fixed


    0 讨论(0)
提交回复
热议问题