Tagged Questions

The Java exception thrown to indicate that the code has attempted to cast an object to a subclass of which it is not an instance.

learn more… | top users | synonyms

21
votes
3answers
10k views

Why am I getting a ClassCastException when generating javadocs?

I'm using ant to generate javadocs, but get this exception over and over - why? I'm using JDK version 1.6.0_06. [javadoc] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be ...
14
votes
3answers
4k views

How does one declare the type of an Android preference?

I have a preferences.xml that looks like this: <?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> ...
10
votes
1answer
3k views

Android: ClassCastException when adding a header view to ExpandableListView

I'm trying to add a header to an ExpandableListView like so: headerView = View.inflate(this, R.layout.header, null); expandableListView.addHeaderView(headerView); expandableListView.setAdapter(new ...
6
votes
2answers
297 views

If A extends B extends C, why can I cast to A but get a ClassCastException casting to C?

I am trying to read an ASN1 object using Bouncycastle on Android. I expect it to be a DERSequence, which in Bouncycastle is a subclass of ASN1Sequence, which is a subclass of ASN1Object. import ...
6
votes
4answers
829 views

Do generics in Java avoid all ClassCastExceptins?

Since generics are only checked during compile time with Java 5, can they avoid ClassCastExceptions in all situations?
5
votes
1answer
553 views

Java Generics GetThis Trick Explanation

I am reading about Java Generics and I came across this topic where I am a bit confused. From : http://www.angelikalanger.com/GenericsFAQ/FAQSections/ProgrammingIdioms.html#FAQ205 public abstract ...
5
votes
4answers
7k views

ClassCastException when casting to the same class

I have 2 different java projects, one has 2 classes dynamicbeans.DynamicBean2 dynamic.Validator On the other project, I load both of these classes dynamically and store them on an Object class ...
5
votes
3answers
9k views

Java: Generics, arrays, and the ClassCastException

I think there must be something subtle going on here that I don't know about. Consider the following: public class Foo<T> { private T[] a = (T[]) new Object[5]; public Foo() { // Add ...
4
votes
2answers
274 views

Hibernate ClassCastException in GWT hosted mode only

Hello and thanks for watching ;-) Our problem/error is: javax.persistence.PersistenceException: [PersistenceUnit: PUname] Unable to build EntityManagerFactory ... Caused by: ...
4
votes
1answer
196 views

java.lang.ClassCastException in tomcat server logs when running webservices with AXIS2

I have written a webservice it works perfectly fine on the UI and all the Unit tests are passing. I am able to send the request and response to and from Webservice. But when I check the server log ...
4
votes
2answers
200 views

Is there Scala equivalent of C# “as” keyword?

Is there Scala equivalent of C# as keyword? var something = obj as MyClass; Scala's asInstanceOf throws java.lang.ClassCastException: val something = obj.asInstanceOf[MyClass]
4
votes
2answers
1k views

Class Cast exception: com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl

I'm struck with a problem in jboss. When I try to deploy my .war into the server, I get this following error, java.lang.ClassCastException: com.sun.org.apache.xerces.internal.jaxp.SAXParserF ...
4
votes
10answers
2k views

“Iterable<Element> cannot be cast to List<Element>” - Isn't `List` a type of `Iterable`?

I called a getElements method which returns Iterable<Element>. I did this: List<Element> elements = (List<Element>) getElements(); This generates the error: ...
4
votes
4answers
5k views

android classcastexception on activity startup

i have a simple activity program in android. basically the class just extends Activity. But when i start it i get a ClassCastException in the constructor of my class. i dont even have a constructor ...
4
votes
1answer
526 views

ClassCastException when creating an instance of a class using reflection and ClassLoaders

First of all, this is Java 1.4 (project restrictions). I'm trying to create a application manager. It loads each application's main class using it's own instance of a custom classloader. After that, ...
4
votes
4answers
2k views

Java, getting class cast exception where both classes are exactly the same

I am doing a JBoss SEAM project and when I view a form I get this error. java.lang.ClassCastException: it.cogitoweb.csi.entity.csiorelav.CsiTipoLav cannot be cast to ...
3
votes
1answer
87 views

can't cast to implemented interface

i'm very confused... I have a class which directly implements an interface: public class Device implements AutocompleteResult {...} Here is proof that I'm looking at the right variables: Object ...
3
votes
1answer
335 views

JAXB: class cast exception, but class has the same name

I have a interesting problem. When I started glassfish server, everythings work fine. But, I changed some code and published the server, and I run my client (SistemGirisClientKullaniciDogrula). The ...
3
votes
2answers
615 views

java: (String[])List.toArray() gives ClassCastException

The following code (run in android) always gives me a ClassCastException in the 3rd line: final String[] v1 = i18nCategory.translation.get(id); final ArrayList<String> v2 = new ...
3
votes
1answer
481 views

Java exception “Exception in thread ”main“ java.lang.ClassCastException: [B cannot be cast to [I” when calling java.awt.image.BufferedImage.copyData()

In the following code, I'm trying to combine some 1024*1024 png into several larger pngs. The code fails with this exception: Exception in thread "main" java.lang.ClassCastException: [B cannot be ...
3
votes
2answers
707 views

Spring - Classcast exception as CGLIB proxy cannot be forced

Here's the scenario that's driving me nuts. I have a class that has a lookup method - createOther() createOther should create an object of type Other. Other implements OtherInterface and in addition ...
3
votes
2answers
141 views

addPrefencesFromResource causes ClassCastException

Code: public class Preferences extends PreferenceActivity { public static final String PREF_AUTO_UPDATE = "PREF_AUTO_UPDATE"; public static final String PREF_MIN_MAG = "PREF_MIN_MAG"; public static ...
3
votes
3answers
234 views

Is it safe to silently catch ClassCastException when searching for a specific value?

Suppose I am implementing a sorted collection (simple example - a Set based on a sorted array.) Consider this (incomplete) implementation: import java.util.*; public class SortedArraySet<E> ...
3
votes
2answers
2k views

Hibernate -> ArrayList cannot be cast to Set

I have a Java EE application and I use Hibernate. The domain objects, I changed the List / ArrayList to Set / HashSet, because it is better to use Sets. But in my Dao implementation I run into a ...
3
votes
4answers
700 views

Why doesn't TreeSet.contains() work?

public class Empty { public static void main( String[] args ) { TreeSet<Class> classes = new TreeSet<Class>(); classes.add( String.class ); String test = new ...
3
votes
1answer
555 views

Java.lang.reflect.Proxy returning another proxy from invocation results in ClassCastException on assignment

So I'm playing with geotools and I thought I'd proxy one of their data-access classes and trace how it was being used in their code. I coded up a dynamic proxy and wrapped a FeatureSource (interface) ...
3
votes
2answers
3k views

Eclipse ClassCastException when trying to expand XML layout for Android

I am new to java, eclipse, and android development, so I may be missing something simple although I have checked basic stuff like spelling several times. Because there is no number picker control ...
2
votes
3answers
66 views

ClassCastException while using varargs and generics

I'm using java generics and varargs. If I use the following code, I'll get a ClassCastException, even though I'm not using casts at all. Stranger yet, if I run this on Android (dalvik) no stack ...
2
votes
3answers
57 views

Java generic cast, non direct

I found something strange about the casts in Java, i never saw that before. The cast is actually not done where you've programmed it in a generic method. Testing the strange thing. On a HashMap: ...
2
votes
2answers
95 views

What is java.lang.ClassCastException: java.util.ArrayList

My code throwing java.lang.ClassCastException exception error, Why this error will get?. I am using com.android.internal.telephony API's. i.e You can find classes I am using here ...
2
votes
4answers
173 views

android ClassCastException on findViewById

I've got a little problem where I can't find the mistake I am making, it's probably something really simple. I've got the following layout <?xml version="1.0" encoding="utf-8"?> ...
2
votes
1answer
92 views

UpdateModelException ClassCastException in JSF 2.0

I have a facelets page with a ui:repeat tag that outputs the rows of an HTML table and each row accepts user input. This works fines. I also have a second set of data that I output using the same page ...
2
votes
1answer
138 views

Hibernate java.lang.ClassCastException: org.hibernate.action.EntityIdentityInsertAction cannot be cast to org.hibernate.action.EntityInsertAction

I'm using Hibernate with an EntityManager. When I use Session session = (Session)entityManager.getDelegate(); session.flush(); session.clear(); I get java.lang.ClassCastException: ...
2
votes
1answer
176 views

What might cause Collections.sort(List<T>, Comparator<? super T>) to throw a ClassCastException?

I am calling Collections.sort() on an ArrayList using a Comparator that I declared earlier. ArrayList<Employee> list = new ArrayList<Employee>(); Comparator<Employee> comparator = ...
2
votes
0answers
72 views

HttpHeaders ClassCastException

I started tinkering with OAuth2 stuff in order to play with the new Google Tasks API. I seem to get all that done successfully and receive my auth token. But when I try to set up any of the HTTP ...
2
votes
2answers
300 views

ClassCastException when trying to create Proxy object

I'm trying to create a proxy for a given Runnable object using the following code: public class WorkInvocationHandler implements InvocationHandler { public static Runnable ...
2
votes
1answer
457 views

Strange classCastException hibernate 3.5 glassfish

Hi I have a problem that I can't solve on my own. I have a war file packaged in ear and running on glassfish 3.0.1 with hibernate 3.5 as JPA provider. I compile it with maven and deploy it with idea ...
2
votes
2answers
812 views

Meaning of java.lang.ClassCastException: someClass incompatible with someClass

I was experiencing occasional exceptions in XPages application: java.lang.ClassCastException: someClass incompatible with someClass. Both mentioned classes are the same, it is class used as session ...
2
votes
5answers
307 views

Java Generics: Type cast issue (ClassCastException)

I'm having trouble figuring out how to properly cast a generic object in java to a type that extends the generic object. For example, say I some setup like the following: public class Parameters ...
2
votes
4answers
665 views

ClassCastException in Java foreach loop

In what circumstances can ClassCastException occur in the code below: import java.util.Arrays; import java.util.List; public class Generics { static List getObjects() { return ...
2
votes
2answers
944 views

ClassCastException in casting DTMManagerDefault into DTMManager during maven jaxb codegen

I'm having a strange problem when trying to run a maven build that uses the jaxb2 plugin to do JAXB codegen (see stacktrace below). The best that I can figure is that there's some implementation of ...
2
votes
3answers
606 views

ClassCastException with JDialog and Thread

I have a JDialog with a thread in it. It sporadically gives me a ClassCastException when the dialog is created (which means I can have succesful ones with no exception), and I have no clue to where it ...
2
votes
3answers
6k views

List to TreeSet conversion produces: “java.lang.ClassCastException: MyClass cannot be cast to java.lang.Comparable”

List<MyClass> myclassList = (List<MyClass>) rs.get(); TreeSet<MyClass> myclassSet = new TreeSet<MyClass>(myclassList); I don't understand why this code generates this: ...
2
votes
2answers
249 views

ClassCastException caused by bug in Just In Time?

Given this piece of code : public static void writeFile(File file,List buffer)throws IOException{ File fic = new File(file.getCanonicalPath()); cat.debug("writing file : ...
2
votes
1answer
2k views

Interpreting a JVM Class cast exception error message - what is the original type that can't be casted

I have a Java production system with IBM JVM running on Linux. A customer reports the following exception printed to the log: java.lang.ClassCastException: [B incompatible with java.lang.String When ...
2
votes
1answer
552 views

Need help understanding JNDI and a particular ClassCastException in J2EE

I have an enterprise application A and B deployed (in WLS 10.0). A is the "framework", B is a client app. The client issues the following calls: Object o = ctx.lookup(jndiName); // line 1 cf = ...
2
votes
1answer
1k views

ClassCastException trying to cast retrieved JPA object to concrete class

I am not certain what I am doing wrong, but I have a class that has a class within it, so when I save the Skill class the user class also gets created, so when I do the join and I want to pull ...
2
votes
1answer
857 views

Java updating JList using BeanBinding Netbeans

I have this JList (say MyList) in a JFrame. Im using Netbeans6 GUI builder and I've set a binding for this list. When run, the binding works fine, and MyList is populated correctly. Now, what im ...
2
votes
3answers
5k views

Why I cannot cast oracle BLOB from native java Blob

I am reading file from ResultSet and it's required to save file into Oracle Database. ... ResultSet rs = ... java.sql.Blob myfile = rs.getBlob("field") java.io.OutputStream os = ((oracle.sql.BLOB) ...
1
vote
2answers
53 views

String can't be cast to an Integer and Integer can't be cast to a String

The getHttpPort method returns an Object type derived from a JSON data query. The value of the Object could be a blank string or an Integer value. To be on the safe side I thought I could represent it ...

1 2 3 4