RuntimeException is the superclass of those exceptions that can be thrown during the normal operation of the Virtual Machine.
0
votes
1answer
56 views
Android AsyncTask RunTimeException
I'm getting following RunTimeException when executing AsyncTask's execute() method.
I execute AsyncTask by clicking on the button whose listener is shown below
this error log.
05-15 12:56:50.045: ...
1
vote
1answer
57 views
java.lang.RuntimeException Cannot find FacesContext
I don't know how to continue, but I always get the "java.lang.RuntimeException: Cannot find FacesContext" for my new JSF 1.2 web application. I'm sure it's just some configuration I can't find.
The ...
0
votes
1answer
46 views
Android TextView append SpannableString forcing java.lang.RuntimeException on Nexus 7
I have a serious problem which crashes my app.
I'm loading some text in the app into a TextView. Some parts of this text are clickable and should call another activity - this works fine for most ...
0
votes
0answers
9 views
Mediarecorder.start() RuntimeException: start failed android 4.0.4
Tried to make an camera app and have followed googles developer guide, but I get an runtimeException: start failed on my android 4.0.4 device. However it works on my friends 4.2.X Samsung. Tried to ...
2
votes
0answers
344 views
Plot graph using multiple database values in Android app
I am currently using afreechart to plot a graph in my Android app. I am using the TimeSeries graph, that they've exemplified in their sample app. For me, data to be extracted from two databases.Two ...
2
votes
4answers
4k views
Eclipse Helios - “java.lang.RuntimeException: Widget disposed too early!”
Hi
I am running Eclipse Helios on Win XP.
When I start it today, I get a message telling that Eclipse can not be started.
Here is the content of the log file that was generated:
!SESSION 2011-03-24 ...
0
votes
0answers
32 views
Android: No such column
Here“s my log-file:
05-04 09:29:10.968: E/SQLiteLog(26491): (1) no such column: datum
05-04 09:29:10.968: D/AndroidRuntime(26491): Shutting down VM
05-04 09:29:10.968: W/dalvikvm(26491): threadid=1: ...
3
votes
2answers
2k views
java.lang.RuntimeException Theme.Sherlock
I have put an update on google play and see this error :
java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.jim2/com.jim2.SettingWidgetActivity}: ...
2
votes
4answers
46 views
Why in Java incompatibility of types to casting is checked at runtime and type mismatch to converting at compile time?
Let's say there are 2 classes. And Child extends Parent.
public class Parent {}
and
public class Child extends Parent {}
I know that the following code is incorrect:
Child obj = new Parent(); ...
1
vote
0answers
55 views
pdf-renderer runtime exception java.lang.NoClassDefFoundError: com/sun/pdfview/PDFFile
I've added the pdf-renderer-1.0.5.jar as an external JAR to my java GWT project.
While accessing "PDFFile pdfFile = new PDFFile (buf);" in the following code I get
java.lang.NoClassDefFoundError: ...
0
votes
1answer
43 views
Android random crashes
Recently I uploaded an app and have received many IllegalStateException and RuntimeException errors. They seem to occur whenever an activity ends/begins but I cant find any explanation. In one of my ...
2
votes
4answers
5k views
Android unable to start activity, error inflating class?
I'm new to android. I have some java knowledge, and I'm using Eclipse.
At the moment I'm trying to display a map within a tab, and am looking at tutorials/code to help me. :)
I've seen a few ...
2
votes
1answer
98 views
fatal exception : asynctask #1 error
There's FATAL EXCEPTION AsyncTask #1 when i run the apps. Can anyone tell me what's the problem i've got on the code ?
Here is the code
new ...
0
votes
1answer
34 views
Rollback with catched RuntimeException
I clearly need some help about transaction roll back. I'm working on a Spring/JPA/Hibernate application.
For me, RuntimeException even if they are catched, are rolling back the transaction. I deduce ...
5
votes
3answers
1k views
BluetoothAdapter.getDefault() throwing RuntimeException while not in Activity
When I'm trying to get default bluetooth adapter while i'm NOT in Activity, but in TimerTask (created inside Service) by using:
BluetoothAdapter.getDefaultAdapter();
I get the following exception:
...
1
vote
1answer
102 views
java.lang.RuntimeException: Failed to invoke public com.example.syncapp.MessageBase() with no args
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
...
0
votes
0answers
48 views
the page 1 was request but the document has only 0 pages
So I am trying to generate a report that may contain many pages depending upon the user input and data.
Similar error was summarized here but its not seen to be the actual solution of the problem.
...
0
votes
1answer
166 views
Android taking photo when user fails password
I have a DeviceAdminReceiver, and I want to take a picture with the front camera when the user fails the password - but I got an error...
The code:
@Override
public void onPasswordFailed(Context ...
0
votes
0answers
21 views
JBOSS Cannot create the portal container “Portal” ServletContext
i had used this tutorial! for change the context of the example "ECMDEMO" to "gustavo" , but i get this exception
2013-04-11 15:58:44,469 ERROR [exo.kernel.container.RootContainer] (main) Cannot ...
1
vote
2answers
99 views
Transfer data between EditText and Text View
I'm trying to make an activity that take the value of the EditText and put it in the TextView in another activity.
This is the code for the first activity which contains a Textview and option menu to ...
0
votes
0answers
43 views
solrj: QueryResponse.getBean(): Exception while setting value of an custom-class-object elements (java)
I'm trying to use solrServer.addbean() to store response object to solr and solrServer.getbeans() to read data from solr.
Data is read using:
doc = ...
1
vote
1answer
69 views
java.lang.RuntimeException: exception while registering MBean, com.scale7.cassandra.pelops.pool:type=PooledNode-my_keyspace-localhost
I am working on a project in which I need to insert data into Cassandra database. So for that I am using Pelops client.
I have a Multithreaded code which will insert into Cassandra database using ...
2
votes
1answer
153 views
Caching bitmaps without External SD Card
The images will not cache on internal storage and crashes on devices without an External SD Card. I have tried what I know and nothing worked. Here is the ImageCache.java
package ...
0
votes
1answer
357 views
Android - Creating a PopupMenu on clicking an ActionBar button
I am trying to make a PopupMenu appear after I click a button in an action bar.
I have got the buttons in the file - action.xml in the 'menu' folder.
This contains the buttons for the ActionBar.
...
0
votes
0answers
49 views
RuntimeException when trying to getParcelableArray in target activity
I'm trying to pass an array of custom objects to an activity. I've implemented parcelable as such:
public class WidgetState {
static class Light implements Parcelable
{
int id;
...
63
votes
7answers
23k views
Java: checked vs unchecked exception explanation
I have read multiple posts on StackOverFlow about checked vs unchecked exceptions. I'm honestly still not quite sure how to use them properly.
Joshua Bloch in "Effective Java" said that
Use ...
0
votes
0answers
76 views
java.lang.RuntimeException: Failed to register input channel. Check logs for details
04-02 14:46:23.828: E/AndroidRuntime(18606): FATAL EXCEPTION: main
04-02 14:46:23.828: E/AndroidRuntime(18606): java.lang.RuntimeException: Failed to register input channel. Check logs for details.
...
0
votes
1answer
165 views
APK Crash when installing from Google Play but not from eclipse/apk file
I released a new version of one of my apps and I start getting tons of errors from users about crashing issues when the application start.
These are the errors I'm getting:
First error:
...
1
vote
3answers
398 views
What causes “RuntimeException: Binary XML file line #20: You must supply a layout_height attribute.” (ActionBarScherlock is suspected)?
I have app with ActionBarScherlock and I use ACRA. I receive crash reports from some users with following error:
"java.lang.RuntimeException: Binary XML file line #20: You must supply a layout_height ...
1
vote
0answers
12 views
Automatically add throws RuntimeException to methods?
I am using Eclipse and when a method can throw a RuntimeException, then there's no hint from Eclipse, that throw RuntimeException is missing after the method signature.
I know that this is intended, ...
4
votes
1answer
134 views
Method Over riding and Inheritance and Exceptions
Can a method in a subclass override a method in the parent class and throw a run time exception when the method in the parent class throws no exception? Something like this:
class X { public void ...
0
votes
1answer
47 views
RunTimeException in ButtonFragment class
I'm getting a runtime exception from my buttonfragment.class. I doing a fragmented button bar, each button with it's own layout and activity. I've been changing things around and can't figure out ...
0
votes
3answers
109 views
Android java.lang.RuntimeException: Unable to instantiate activity
I am currently stuck with the following errors from Logcat. I've looked at over ten other posts similar to this problem and could not find solutions to my problem.
03-22 17:55:58.777: E/Trace(1172): ...
6
votes
2answers
186 views
Android App crashes on Release Build with the use of Proguard and Dagger
I'm new to the use of Proguard and Dagger for Android apps, so I would really appreciate if someone could give me a few pointers.
Proguard and Dagger have been implemented into the application. When ...
33
votes
4answers
26k views
Calling startActivity() from outside of an Activity?
I'm using an AlarmManager to trigger an intent that broadcasts a signal. The following is my code:
AlarmManager mgr = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
Intent i = new ...
0
votes
2answers
228 views
java.lang.NullPointerException in android emulator
I am making a application in which i create a list view with two text fields and one check box ....and when i click or check on check box then the both text are added to database. but my emulator ...
1
vote
0answers
47 views
Failed to unregister input channel
In one of my marketplace apps, I'm seeing a few reports of these from the wild from time to time, and can't determine why they are being thrown. I'm not doing anything that I would consider unusual ...
0
votes
0answers
41 views
RunTimeException in Andrioid : java.lang.nullpointerException
I have seen similar answers for this question, but still I couldn't find the solution for my error.
I found out from debug that activities in my project is showing savedInstanceState = null
Can ...
0
votes
1answer
524 views
When using a WSDL-first approach to generate java stubs, is there a way to make exceptions extend RuntimeException instead of Exception?
Is there a way to force JAXB to generate exceptions which extend java.lang.RuntimeException instead of Exceptions when using a WSDL-first approach?
I'm using a WSDL-first approach for my Java web ...
0
votes
1answer
563 views
Android fails to Connect to camera service when called in a second activity
I am writing an app which takes pictures every x-seconds, detects differences above a threshold and eventually sends high-def pictures out via email. The app workd fine if I keep all the camera ...
-2
votes
6answers
88 views
NullPointerException for Android Java
I had a previous question similar to my current problem, and that was when I retrieved null values from my String arrays, now my problem is that I think I'm also getting null values from my integar ...
0
votes
0answers
218 views
Android : Take a photo or an image from the gallery to crop it, runtimeException while changing Intent Uri
at some point in my application, I have to either take a photo or an image from the gallery and crop it.
I manage to do all that, but the problem is that when I crop the image, it crops the original ...
0
votes
3answers
88 views
MapView ClassCastException
Here's the LogCat content :
02-25 15:57:42.481: E/AndroidRuntime(1327): FATAL EXCEPTION: main
02-25 15:57:42.481: E/AndroidRuntime(1327): java.lang.RuntimeException: Unable to start activity ...
0
votes
0answers
55 views
Connector.open(String s) causes a RuntimeException
I have a little program here where I try to create a server socket on the port 1234.
public class SocketTest {
public static void main(String[] args) {
try {
...
0
votes
2answers
63 views
multitreading UI : exceptionininitializererror and runtime exception android
I'm trying to make multithreading but I've got this stacktrace on few smartphones (SGS2) :
java.lang.ExceptionInInitializerError
at ...
3
votes
2answers
87 views
Java - How to deal with checked exceptions *as a group*?
EDIT: This question relates to Java 1.6 (and below). Apologies for not making this clear in the original post.
The hierarchy here shows Java Exception is divided into two types: RuntimeException and ...
0
votes
1answer
962 views
java.lang.RuntimeException: Unable to start activity ComponentInfo{…}:java.lang.ClassCastException: android.app.Application cannot be cast to
I'm creating an Android app which uses Microsoft Hawaii OCR; during the test of my app, it crashes giving me this error:
02-08 11:38:38.861: E/AndroidRuntime(4704): FATAL EXCEPTION: main
02-08 ...
0
votes
1answer
114 views
Where can I find an updated version of “libvlc” that will work with vlcj 2.1.0?
I am trying to compile code for the Java binding of VLC player with vlcj 2.1.0 and I am getting the error:
Exception in thread "AWT-EventQueue-0" java.lang.RuntimeException: This version of vlcj ...
0
votes
2answers
74 views
RuntimeException with SQLite database - Android
I tried to alter some of my file names on my laptop and I must have screwed something up with my program. The program runs fine until when it gets to the point where it needs to open the SQLite ...
0
votes
1answer
151 views
Java Runtime.exec() hanging
I am getting into the Defunct zombie process whenever the below code is executed. Could someone help me to resolve this issue.
private static boolean executeCommand(String command)
throws ...








