Re: java.lang.NoClassDefFoundError

From: William Lai <wlai2768(at)gmail(dot)com>
To: Becerra Lagos Ana Lilian <exabecerra(at)nt(dot)entel(dot)cl>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: java.lang.NoClassDefFoundError
Date: 2005-01-18 15:25:00
Message-ID: 41ED2A4C.3020703@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Hi,

Did you try,

java -classpath c:\path\to\pg73jdbc3.jar;. Example2

Have a nice day,
William

Becerra Lagos Ana Lilian wrote:

> Hi,
>
>
>
> Could you help me in my program JAVA with jdbc Postgre
>
> I have my simple code
>
>
>
> import java.sql.DriverManager;
>
> import java.sql.Connection;
>
> import java.sql.SQLException;
>
>
>
> public class Example2 {
>
> public static void main(String[] argv) {
>
> System.out.println("Checking if Driver is registered with
> DriverManager.");
>
>
>
> try {
>
> Class.forName("org.postgresql.Driver");
>
> } catch (ClassNotFoundException cnfe) {
>
> System.out.println("Couldn't find the driver!");
>
> System.out.println("Let's print a stack trace, and exit.");
>
> cnfe.printStackTrace();
>
> System.exit(1);
>
> }
>
> }
>
> }
>
>
>
> Then I execute :
>
> javac Example2.java
>
>
>
> Then I execute
>
> java Example2
>
>
>
> but I get
>
> Exception in thread "main" java.lang.NoClassDefFoundError: Example
>
>
>
> Wich is my error ?
>
> I copied pg73jdbc3.jar in my path
>
> C:\j2sdk1.4.1_07\lib\
>
> Its have org.postgresql.Driver
>
>
>
> Thanks advanted
>
> ana
>
> Este correo es dirigido solo a las personas que aparecen como
> destinatarios
> y puede contener información confidencial o privilegiada.
> Si usted recibió este correo por error, por favor notificar
> inmediatamente
> al emisor y elimine el correo original. Cualquier otro uso de este correo
> esta prohibido.
>
> ******************************************************************************************************
>
>
> This message is for the designated recipient only and may contain
> privileged or
> confidential information. If you have received it in error, please
> notify the sender
> immediately and delete the original. Any other use of the email is
> prohibited.

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Becerra Lagos Ana Lilian 2005-01-18 15:36:08 Re: java.lang.NoClassDefFoundError
Previous Message Peter Eisentraut 2005-01-18 14:51:55 Re: 8.0 drivers released.