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.
0
votes
2answers
46 views
getting java.lang.classCastException:android.os.Bundle
i am trying to show a pic clicked from camera on another activity image view,but getting image out of the bundle into bitmaps.. i get this error.
my code is
package com.example.iwm;
import ...
0
votes
5answers
101 views
Java Generics Causing Class Cast Error
So I'm coding up a generic adjacency list and my code has no compile errors, but when I run my tests I get the same runtime error across the board:
java.lang.ClassCastException: [[Ljava.lang.Object; ...
1
vote
2answers
56 views
+50
Any Alternate method for Class Casting
Following statement is not executing on some devices.
AddEvent act1 = (AddEvent) getLocalActivityManager().getCurrentActivity();
Is there any alternate method for above statement. On some devices ...
0
votes
2answers
28 views
ClassCastException in BookingApp
I'm getting a ClassCastException at:
RVBooking rvbooking = (RVBooking) bookingList.get(iweight);
I want to store the user's weightvehicle input and invoke the recordWeight() method. Sorry if i am ...
0
votes
1answer
31 views
Init parent class with a Child contstructor in Java, theory
I've just tested this code.
Main.
public class Main {
/**
* @param args
*/
public static void main(String[] args) {
Parent parent = new Child(12, "Lorem", 12);
if ...
0
votes
0answers
33 views
HttpsURLConnection: ClassCastException [duplicate]
I'm trying to get a handle on a HttpsURLConnection object so that I can retrieve the server SSL certificate. I have a very simple piece of code that USED to work.
URL httpsURL = new ...
1
vote
2answers
34 views
ListView with different Items and ViewHolders leading to ClassCastException
I have a ListView and it should have four different types of items. I searched for it, found different solutions that this is possible and tried to do my stuff just like the other persons did. I've ...
0
votes
1answer
28 views
Saving file with casting error [closed]
java.lang.ClassCastException: infrastructure cannot be cast to terrain
at p2_assign_version2.main(p2_assign_version2.java:98)
This is the error that is constantly being printed when I try to build ...
0
votes
1answer
38 views
ClassCastException ObjectStreamClass cannot be cast to java.lang.String when deserializing
I am trying to serialize, send and receive an instance of the below class ( ServerGameDataObject object = new ServerGameDataObject() )
public class ServerGameDataObject implements Serializable {
...
3
votes
1answer
62 views
JSF and type safety
As I struggled for hours I finally found where those annoying ClassCastExceptions came from, which I thought were produced by Hibernate and it's enum-mapping.
But they came from my JSF view, where I ...
0
votes
1answer
48 views
ClassCastException when persisting enum via Hibernate
I've now wasted several hours trying to get this to work, but Hibernate still keeps me wondering what's going on there inside.
Here's what I want to do:
Simply persist a List of enums via @Enumerated ...
0
votes
0answers
18 views
Jruby classCastexception seems to be an issue in the platform (not my code)
I have loaded jruby on a new ec2 instance and it is not happy.
In a ruby script that is working on another ec2 instance (with same o/s version and jruby version) but fails on this newly configured ...
1
vote
1answer
26 views
ClassCastException even after type casting
I got a problem with iterating List which got prepared from HQL.
I am querying DB on a single table mapped to very simple class.
After iterating the same list and type casting to same class during ...
-1
votes
3answers
27 views
Why do I get a ClassCastException when using Long instead of Integer?
Basically trying out the following snippet I get a ClassCastException:
public static void main (String []args)
{
Path path = Paths.get((System.getProperty("user.home")), ...
0
votes
0answers
42 views
java.lang.ClassCastException while running RestAssured test
I am very new to RestAssured, and my test case as below.
public class SampleTest {
@Test
public void testSampleApi() {
RestAssured.baseURI = "http://remoteserver";
RestAssured.port = ...
0
votes
1answer
72 views
Fatal Exception: String can't be cast to Spannable
My app works greatly with the exception of a few devices. On one such device, I get a FATAL EXCEPTION in one of my activities. The error is java.lang.ClassCastException: java.lang.String cannot be ...
0
votes
1answer
56 views
java.lang.ClassCastException: android.widget.TextView ERROR
I am getting a ClassCastException error. I don't know why.
Tried to clean my project, but nothing happened.
Thanks in advance!
logcat:
04-30 18:03:44.122: W/dalvikvm(276): threadid=1: thread exiting ...
0
votes
0answers
26 views
ClassCast Exception in Weblogic 9.2 server
We are recently facing issues in our web applications , EJB and webservices installed in Weblogic 9.2 server. We deployed 3 new applications recently in weblogic server and we are getting class cast ...
2
votes
2answers
60 views
ArrayList.toString Exception
I am using a ArrayList to store some Strings form an array of strings:
ArrayList<String> list = new ArrayList<>();
list.add(strings[i]);
To give those to another function I converted ...
2
votes
1answer
53 views
ClassCastException (String to Long) when running a subquery with Criteria
First my setups :
mysql-connector-java 5.1.24
hibernate-core 4.1.10.Final
I've got an ClassCastException when running this criteria query :
Criteria sellableItemsCriteria = ...
-2
votes
4answers
80 views
ClassCastException when casting an Object to List<String>
I'm developing and Android application and I have implemented a class for all handling with the shared preferences. This class holds a universal method for getting preferences, it's universal in that ...
0
votes
0answers
167 views
ClassCastException running Applet after update to JRE 7u21
I'm working on a signed Applet that will no longer start under version 7u21 of the JRE.
I've recompiled the applet using the 7u21 JDK, I've added the Trusted-Library:true line to the manifest (and ...
0
votes
0answers
41 views
Android removing TitleBar for Activity causes ClassCastException. Why?
I'm getting a ClassCastException on the following line:
content = ((LinearLayout) findViewById(android.R.id.content).getParent());
This is only when I set the theme of the Activity/App as ...
0
votes
2answers
45 views
ClassCastException on SimpleAdapter in Android
I am trying to display a list of alarms in my Android application but I am getting an Exception. How can I resolve this?
This is where I am trying I initialise the adapter:
List<Alarm> ...
1
vote
0answers
62 views
ClassCastException while retrieving datasource from InitialContext
I'm getting the following error while attempting to retrieve a datasource object from my initial context using Oracle WebLogic 12.1:
"Problem creating dummy orb: org.omg.CORBA.COMM_FAILURE: ...
0
votes
3answers
20 views
putting data from a LinkedBlockingQueue<> to an array not of type object
I am trying to do copy from a LinkedBlockingQueue to a dataStuff[] data array using .toArray() but I am getting an Exception
Exception in thread "main" java.lang.ClassCastException: ...
2
votes
0answers
64 views
Method overloading with JAX-WS reference implementation
Method overloading is not allowed in the WS-I profile. The usual trick seems to be to add @WebMethod(operationName="...") annotations. If I do that, I get a ClassCastException.
Minimal example ...
54
votes
4answers
1k views
What else can throw a ClassCastException in java?
This is an interview question.
The interview is over, but this question is still on my mind.
I can't ask the interviewer, as I did not get the job.
Scenario:
put object of class C1 in to a ...
1
vote
2answers
51 views
ClassCastException when Treeset.add(), despite implementing comparable with compareTo method
I have a class Contact that I have displayed below. I want each Contact object to have a list of other Contacts. I chose a TreeSet because I'd like to avoid duplicate Contacts in the same list. My ...
0
votes
1answer
60 views
Truncated Java object when passing through JAX-WS WebService
I am currently working on a project that uses JAX-WS webservices in Java.
The global topic is this : the user creates locally an object, let's say an Agent. He calls a first webservice and passes its ...
0
votes
1answer
221 views
java.lang.ClassCastException: java.util.ArrayList cannot be cast to …CrExcessMaster
My code is
private List find(String queryString) {
final Query query = getSession().createQuery(queryString.intern());
List resultSet = query.list();
return resultSet;
}
...
0
votes
0answers
58 views
ViewPager-related Exception on Android 2.3.X
So, basically I have a button that, when pressed, removes itself from its layout and adds a ViewPager with ~20 Fragments.
It works as intended on a Samsung Galaxy S II running 4.0.4 and a LG Nexus 4 ...
0
votes
1answer
57 views
ClassCastException - related to JSON parsing, came out of nowhere
My app was seemingly running fine for a while now, when all of a sudden I started getting a ClassCastException when running a portion of the app that runs a query via REST API. I have no idea where ...
0
votes
1answer
27 views
Class extending Application throws ClassNotFoundException
I have a class that extends the application class and sometimes in my developer console I see an error saying ClassNotFoundException
java.lang.RuntimeException: Unable to instantiate application ...
3
votes
3answers
159 views
Reflections IllegalArgumentException causes
UPDATE - To make the question clearer.
What is the possible cause of getting a ClassCastException while calling a method via reflections?
I got the following stacktrace as a part of my application ...
0
votes
3answers
76 views
ClassCastException error, dont know why it occurs
I m working with BaseAdapter class and i get an ClassCastException error in getView method when i try to cast my viewHolder class.
Here is my code:
public View getView(int position, View ...
0
votes
4answers
42 views
Finding median of variable type of arguments
I have a method which takes variable number and types of arguments in the form of Object. I want to calculate the median of only the numbers in those arguments. I used Lists to insert the ...
0
votes
0answers
27 views
ClassCastException while trying to customizable key in Samsung SGH-I547C
I'm trying to customize the external camera key to run my application on Samsung SGH device.
After a few seconds the customization action failed and i get the following error message -
04-14 ...
1
vote
0answers
37 views
tiny mce js throwing maven build type conversion error
While including the JS file for tiny mce in the js folder when trying to build the application i am getting the following error:
[INFO] ...
2
votes
1answer
67 views
Cast List<Object[]> to Object[][] in Java
How to turn List of arrays into two dimensional array in Java?
//Prepare the list
List<Object[]> conf = new LinkedList<Object[]>();
conf.add(new Object[]{ "FOO", "BAR"});
conf.add(new ...
1
vote
1answer
106 views
ClassCastException with Generics and Mockito
I have this case using JDK6, Junit3, and Mockito 1.8.5 (names have been changed to make it easily understandable):
public abstract class AbstractProcessorTest<P extends AbstractProcessor<T>, ...
0
votes
1answer
116 views
NetBeans Maven: ClassCastException - RestEasy vs Jersey
As my title says, I believe the issue is with classloading, and the fact that my application is trying to cast a jersey-core class to resteasy. Below is the code that triggers it, as well as the ...
1
vote
0answers
22 views
ClassCastException when initializing CustomView
I have a custom TextView looking like this:
public class ClickTextView extends TextView {
public ClickTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
...
0
votes
2answers
65 views
ListAdapter with multiple item types throws ClassCastException
I am building an app for an event and one of the features is a message board. To do this I built a ListView and loaded it with messages.
I have two types of message: messages you send, and messages ...
0
votes
1answer
51 views
GWT RPC Service Allocate exception for servlet
I'm trying to create a simple RPC service that blows up with the following error message :
[tomcat:launch] Apr 3, 2013 12:50:38 AM org.apache.catalina.core.ApplicationContext log
[tomcat:launch] ...
1
vote
1answer
121 views
ClassCastException on itself after redeploy of same application`
I am developing a JSF application with Netbeans and Glassfish. When I change something and Netbeans redeploys to Glassfish, then a ClassCastException is been thrown on the entity class itself.
Caused ...
1
vote
0answers
67 views
Compiler bug? java.lang.ClassCastException: scala.collection.mutable.WrappedArray$ofRef cannot be cast to java.lang.Integer
Scratching my head over a weird runtime error:
// File: build.sbt
scalaVersion := "2.10.1"
// File: src/main/scala/bug/Bug.scala
package bug
class Foo(val args: Any*)
case class Bar(id: Int) ...
0
votes
1answer
229 views
Exception : java.lang.ClassCastException: [B cannot be cast to java.io.ObjectStreamClass
I made an application which can securely transfer files between systems...
All works fine... except at receiving end. it shows an
Exception in thread "New Connection" java.lang.ClassCastException: ...
2
votes
2answers
107 views
ClassCastException in Java error Object[] to String[]
I get the error:
Exception in thread "main" java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to [Ljava.lang.String;
at ...
0
votes
4answers
81 views
ClassCastException using Class.cast using Generics
I am writing a generic method which will validate a property by trying a class.cast on it but I keep getting a ClassCastException
... Class to Test
public <T> T get(Properties p, String ...




