Home Answers Viewqa JDBC Exception in thread "main" java.lang.ClassCastException

 
 


abhilash
Exception in thread "main" java.lang.ClassCastException
0 Answer(s)      9 months ago
Posted in : JDBC

I am trying to connect the database. I am stuck with this exception that is getting thrown. Anyone help me please.

Java Code:

import java.sql.*; import org.postgis.*;

public class Test_jdbc { public Test_jdbc() { } // executes single SQL query public static void test(java.sql.Connection conn) { String query = "select nom_com from communes "; Statement stmt = null;

try { stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery(query); String s = ""; while (rs.next()) { // do something with the result s = rs.getString(1); } } catch (SQLException sqle) { sqle.printStackTrace(); } finally { try {stmt.close();} catch (Exception e){e.printStackTrace();} } }

public static void main(String[] argv) { try { Class driver=Class.forName("org.postgresql.Driver"); java.sql.Connection conn=DriverManager.getConnection("jdbc:postgresql://localhost/postGIS","postgres", "postgres");

((org.postgresql.Connection)conn).addDataType("geometry","org.postgis.PGgeometry");

((org.postgresql.Connection)conn).addDataType("box3d","org.postgis.PGbox3d"); test(conn); } catch (Exception ex) { ex.printStackTrace(); } } }

When i am compiling it it throw the error.

Test_jdbc.java:2:error:package org.postgis doesnot exist Test_jdbc.java:35:error:package org.postgresql doesnot exist Test_jdbc.java:37:error:package org.postgresql doesnot exist

can anyone solve this problem its very urgent.

View Answers









Related Pages:
Exception in thread "main" java.lang.ClassCastException
Exception in thread "main" java.lang.ClassCastException  I am trying to connect the database. I am stuck with this exception that is getting thrown...) { sqle.printStackTrace(); } finally { try {stmt.close();} catch (Exception e
Exception in thread "main" java.lang.ClassCastException
Exception in thread "main" java.lang.ClassCastException  I am trying to connect the database. I am stuck with this exception that is getting thrown...) { sqle.printStackTrace(); } finally { try {stmt.close();} catch (Exception e
exception in thread main while running servlet
exception in thread main while running servlet  I got exception in thread main no such method error while running servlet. I have added servlet.api.jar file in classpath.my classpath is C:\Program Files\Apache Software Foundation
Exception in thread
:\mail.jar SendMailTLSDFC Exception in thread "main" java.lang.NoClassDefFoundError...Exception in thread   Hi, I have created a java file for sending a file to my mail. I am using mail.jar file. I am able to create .class file
exception in thread main java.lang.unsupportedclassversionerror unsupported major.minor version 50.0 - Java Beginners
exception in thread main java.lang.unsupportedclassversionerror unsupported... getting the this error :exception in thread main...!"); } } for example: javac xxx.java-->comping java xxxx:error :exception in thread main
Thread
(Exception ex) { } } }; Thread mainth = new Thread(main... should produce the sum of 1 to 10, 11 to 20 and 21to 30 respectively. Main thread...); } catch(Exception ex) { } } }; Thread thread3 = new Thread
exception in thread main java.lang.unsupportedclassversionerror unsupported major.minor version 50.0 - Java Beginners
exception in thread main java.lang.unsupportedclassversionerror unsupported... is compling but runtime i am getting the exception in thread main.... Thanks  my code is class xxx { public static void main(String
Exception in thread "main" org.hibernate.hql.ast.QuerySyntaxException: TESTING is not mapped [FROM TESTING]
Exception in thread "main" org.hibernate.hql.ast.QuerySyntaxException: TESTING...(HiberTest.java:18) Exception in thread "main...)); } } } couldn't connect to tDB using, SQL statements. Exception in thread "main
MAin error
but @ d tym of runnin error in main class is generated Exception in thread "main".java.lang.NoClassFoundDefLoader. : Hello caused...MAin error  Error while running hello program in another dir rather
how to solve the nullPointer Exception in main - Java Beginners
: Exception in thread "main" java.lang.NullPointerException...how to solve the nullPointer Exception in main  New to Java ,pls help me how fix Null pointer Exception in main: two files , split .java another
Main Thread and Child Thread
and Child Threads used in Programming. Main thread is automatically created when program runs. Child Thread gets created by the main thread . Java Main... 1 this thread is main 1 this thread is Child 2 this thread is Child 3
Exception in Thread
Exception in Thread    i am developing a rmi application in eclipse... client and generate connection with server i have following exception : Blockquote Exception in thread "RMI TCP Connection(idle
How to Differenciate Main Thread and Child Thread in Java
How to Differenciate Main Thread and Child Thread in Java  hi... Main Thread and Java Child Thread. Please Suggest any example or online link... in Java Programming Language. These are Java Main Thread and the Child Thread
Java Exception Thread
Java Exception Thread     ... to Overcome this Thread Exception in Java Program In the preceding code, we... RunnableExample { public static void main(String args[]) { Thread threada = new
Thread
Thread  Explain two ways of creating thread in java. Explain at three methods of thread class.   Java Create Thread There are two main... Create Thread There are two main ways of creating a thread. The first is to extend
Thread
main(String [] args) { MyThread m=new MyThread("Thread Started... to the thread constructor eventhough we had created only one thread and if you say we have added to point to the current thread then why we have not added
Thread
Thread  class Extender extends Thread { Extender(Runnable run...(); } public void run(){ System.out.println("Extender Thread is Started :"); //new Thread(new Implementer()).start(); } } class Implementer
Thread
=" + i); } public static void main(string args[]) { A a = new A(); Thread t = new thread(a); t.start(); } } Is it possible to run above program with out...Thread  will this code work..? class A extends Thread { public
difference between main thread and child thread?
difference between main thread and child thread?  any one give correct exact difference.   in jsp 7 implicit objects are available those are 1:response->This denotes the data included with the HTTP Response. 2
problem with main - Java Beginners
a problem. when i compile it appears this message: java.lang.NoSuchMethodError: main Exception in thread "main" . Should i put a main in another file? And how can..., This is an applet code and applet doesn't have main method therefore compile it and run
Thread
;Java throw and throws Whenever we want to force an exception then we use throw keyword. the throw keyword (note the singular form) is used to force an exception. It can also pass a custom message to your exception handling module. Moreover
thread
thread  Hi what are the threads required to excute a programe except main threads? Thanks kalins naik
exception
{ public static void main(String[] args)throws Exception { for (String s... arguments are not equalto two,throw a user defined exception "invalid parameter exception" ,otherwise display the two parameters.   Here is an example
exception
exception  example for numberformat exception   Hi Friend... main(String[] args) { try{ String st="Rose India...); } catch(Exception e){ System.out.println(e
Exception
Exception  whis is the Arithmetic Exception in java? or define Arithmetic Exception with exp?   Arithmetic Exception occurs, when you divide a number by zero. Example public class TryCatch { public static void main
Exception
); } } public static void main(String args[])throws Exception { FooException oo=new...Exception  public class FooException extends Exception { public..."); } public void calculate() throws FooException, Exception { try { int
exception
exception  Identify the reason for SQLException exception, which...; Try this: import java.sql.*; class InsertData{ public static void main..."); ps.executeUpdate(); } catch(Exception e
Jfree exception
....... Exception in thread "main" java.lang.ClassNotFoundException... void main(String arg[])throws Exception{ Class.forName
Jfree exception
....... Exception in thread "main" java.lang.ClassNotFoundException... void main(String arg[])throws Exception{ Class.forName
EXCEPTION
implements interface1,interface2{ public static void main(String []args
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException  ... is clicking I getting the error : Exception in thread "AWT-EventQueue-0... { Image m; Thread t; NextPage(final String uname
Exception
: class HelloWorld { public static void main(String[] args
Java Sleep Thread
Java Thread sleep() is a static method. It sleeps the thread for the given time in milliseconds. It is used to delay the thread. It is used in Applet or GUI programming for animation Java Sleep Thread Example public class
Java Thread : getState() Example
main(String[] args) { Thread th = new Thread(new ThreadGetState()); Thread...Java Thread : getState() Example This section explains how to get state of a thread  in java Thread. Thread  getState() : Suppose you want to know
JAVA THREAD - Java Beginners
main(String ar[]) { Thread th = new Thread(new RunnableThread...: class kj implements Runnable { public static void main(String ar[])throws Exception { int res=0; res=fgh(0,5)+fgh(5,10); System.out.println("Result"+ res
Thread Deadlocks - Java Tutorials
Thread Deadlock Detection in Java Thread deadlock relates to the multitasking... is possible. In other words, a situation where a thread is waiting for an object lock that holds by second thread, and this second thread is waiting for an object
Get Current Thread
Get Current Thread       A Thread is the independent path of execution in a program. Many thread runs concurrently with a program. Some threads are Multithread
Thread and Process - Java Beginners
Thread and Process  Dear Deepak Sir, What is the diffrence between Thread and Process.Give an example with explanation. Thnaks & Regards... space; a thread doesn't. Threads typically share the heap belonging to their parent
Thread - Java Beginners
Thread  Can i ask a thread method that will input two names using... java.awt.*; public class JoptionThreadDemo{ public static void main(String...()); } }; Thread appThread = new Thread() { public void run() { try
Java Thread : isAlive() method
Exception { Thread thread = new Thread(new ThreadIsAlive()); thread.start...Java Thread : isAlive() method In this tutorial you will learn how to use isAlive() method in java thread. isAlive() method : When you are running many
Java Thread : isDaemon() method
static void main(String args[]) throws Exception { Thread thread1 = new...Java Thread : isDaemon() method In this section we are going to describe isDaemon() method with example in java thread. Daemon Thread  : In Java
Java :Thread Enumeration
Java :Thread Enumeration In this tutorial you will learn about java thread enumeration. Thread Enumeration : For enumeration, thread uses two methods... threads. This count size is used for array of Thread references. Calculating
Java :Thread Join
().getName()); } } public static void main(String[] args) throws Exception...Java :Thread Join In this tutorial you will see how to use join method in java thread. join() method - join method waits until the thread die. If we
Java Thread Join
void main(String[] args) throws Exception { join j1 = new join(); Thread... Java Join method join the next thread at the end of the current thread After current thread stops execution then next thread executes. Java Join
Example to show Hash map exception in java
Exception in thread "main" java.lang.ClassCastException... Example to show Hash map exception in java  .... The program given below gives the brief description of exception that occurs while
Java Thread : stop() method
) throws Exception { Thread thread1 = new Thread(new ThreadStop()); Thread...Java Thread : stop() method In this section we are going to describe stop() method with example in java thread. stop() method : Java thread provides
bean creation exception
bean creation exception  hi i am getting exception while running simple spring ioc program Exception in thread "main... path resource [beans.xml]; nested exception is java.io.FileNotFoundException
Java Thread getStackTrace Example
Java Thread getStackTrace Example This section explains use of getStackTrace() method  in java Thread. Thread getStackTrace() : It returns an array... as the stack dump of the given thread. This method provides the array of stack trace
Java Thread Priorities
to the thread. It throws IllegalArgumentException and SecurityException exception... .style1 { font-size: medium; } Java Thread Priorities In this section, we will discuss how to set thread priorities with example. Thread
Java Thread Synchronization - Development process
Java Thread Synchronization  Hi,Please help me with this coding. I... press any key on the keyboard,then one thread must stop.When I press the keys second time,then the second thread must stop. Please provide me with the code  

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.