-1
votes
2answers
35 views

ArrayIndexOutOfBoundsException length=0 index=1. Store Androjena(jena for android) SPARQL queries in an array

The code bellow is a part of an activity of an Android app. I am using Jena(Androjena) to query rdf files. That part works fine. The problem is that i am trying to iterate through the results and ...
0
votes
1answer
9 views

Solr Exception when using DataImportHandler: Exception in full dump while deleting all documents

I'm getting an error when trying to use Solr's DataImportHandler on Solr3.6. I've got the jar file in /etc/solr/dist and am running two cores at /etc/solr/core0 and /etc/solr/core1 Here's the ...
1
vote
0answers
10 views

NoSuchPortException when running java application using SMSLib

I'm using SMSLib in my java application to send an SMS, i connect a USB internet modem to my PC then determine it's port number (ie. COMx) then creating a serial modem gateway like this : determining ...
0
votes
2answers
14 views

Struts2 customExceptionMappingInterceptor

I already searched here and on internet but I couldn't find a solution for my problem. I would like to use my custom exceptionHandler to intercept all the java exceptions and to treat them in a ...
0
votes
0answers
51 views

Simple java program “Hello World!” not working after installing Android plugins in the eclipse

Recently I installed Android plugins in Eclipse. I am using Windows 7 64 bit and having jre6 installed Every thing for Java was fine before this, but after installing plugins I created simple Java ...
0
votes
1answer
22 views

IOException while setting configLocation in XmlWebApplicationContext object

I am getting IOException parsing XML document from ServletContext resource [/WEB-INF/servlet.xml]; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource ...
0
votes
2answers
25 views

Exception (NoClassDefFoundError) in AsyncHttpClient

when i run benchmark program in com.ning.http.client.AsyncHttpClient i can see this type of error.. **Setting up AhcGrizzlyBenchmark... Exception in thread "main" java.lang.NoClassDefFoundError: ...
0
votes
2answers
32 views

Can't Instantiate Field (instance variable) in main() method. Why?? Java

Can someone tell me what I am doing wrong here? When I have this code in Eclipse, it is telling me I cannot "make a static reference to a non-static field" when I try to set sheetName to "hi" in the ...
0
votes
0answers
16 views

Suspended (exception RuntimeException)) Android - Sharedpreferences error

The debugging message is: DalvikVM[localhost:8600] Thread [<1> main] (Suspended (exception RuntimeException)) <VM does not provide monitor information> ...
0
votes
0answers
9 views

Webcam Cannot find a Player for :vfw://0

i'm tryin to take a picture in my webcam, i'm just starting to use JMF i just need to take a picture with a webcam and save it to a specified directory im using this code import java.awt.Component; ...
0
votes
2answers
37 views

Why we must handle exception for method not throwing exceptions? [duplicate]

Given public class ToBeTestHandleException{ static class A { void process() throws Exception { throw new Exception(); } } static class B extends A { void process() { ...
1
vote
1answer
30 views

Difference in calling sequence while rethrowing exceptions

Consider the following class with methods: a() calling b() which in turn calls c(). public class ReThrower { public static void a(int a1){ try{ a1+=1; b(a1); ...
5
votes
5answers
105 views

Specify an exception or not?

i have a little performance question, when working with a try catch clause, it's better to specify the exact exception you can get or just using exception it's better? Example: try { whatever } ...
0
votes
3answers
53 views

How to make FileOutputStream.close() to throw exception myself?

In Java, FileOutputStream.close() may throw an IOException. But I never see it happens. How can I produce such an exception? I need to produce this. Thank you.
0
votes
1answer
48 views
+50

HttpUrlConnection not working and shows different status code for GET and POST call

I am getting FileNotFoundException when making GET call to REST API. Here HTTP status code I get is 403. For POST call I get IOException : No authentication challenges found, whereas I pass ...
0
votes
1answer
41 views

BigInteger throws null pointer exception

I'm having trouble getting a BigInteger to add another BigInteger to it. Any suggestions The relevant code: Declared in class: private BigInteger mTotientSum; Done in constructor: BigInteger ...
0
votes
2answers
54 views

Is there a way for one method to resolve itself before moving on to the next item in code

I have searched this site, oracle, and others to no avail. I am having a couple of issues with my program, but for right now I only want to deal with one. First let me post the parts of my program I ...
0
votes
2answers
66 views

FileNot Found Exception

This is my class svm_predict package pack.test; import java.io.*; import java.util.*; public class svm_predict { File inputFile; File outputFile; File modelFile; public svm_predict(File ...
0
votes
0answers
25 views

Error using Categories in JUnit

I've created one test class and one category & one test suite. The Test class is not parameterised but I've been getting error "Category annotations on Parameterized classes are not supported on ...
0
votes
4answers
63 views

Exception class for objects of different classes

I'd like to write an exception class which is usable with different classes and specific behaviors. It works well with changing an object - like a.setWeight(500) - but it doesn't work in my ...
0
votes
3answers
33 views

No unique bean of type exception. Issues with autowiring inherited classes

I am new to Java code and I had an exception about the autowiring a service interface. I have to classes A and B. B extends from A and each class has its own services. @Service ...
0
votes
0answers
16 views

How can I avoid Dimension exception using method convertToImage() on class PDPage when converting to TIF

I have around 500 PDF documents which I need converted into TIF files. I am using PDDocument and PDPage from Apache PDFBox 1.8.2 API. The code is working on almost all PDF documents except around 20 ...
0
votes
0answers
23 views

Exception in code (Apache Jackrabbit)

I am working with Apache Jackrabbit. I found an exception, I tried a lot but didn't get the reason behind this exception. Please help me in solving this. Exception :- ...
3
votes
3answers
38 views

Java what .read() function returns ? And Java IOException

I have this line of code.And numbers.txt has a string of these numbers : 123456789 .Running it prints : 235689 . Why? What does .read() do ? And when 'while(fin.read() > -1 )' is TRUE? Also about the ...
4
votes
2answers
59 views

Why Android doesn't find my Activity?

I am working on an Android Application and I am getting this on the log: 06-13 15:35:11.140: E/AndroidRuntime(21290): FATAL EXCEPTION: main 06-13 15:35:11.140: E/AndroidRuntime(21290): ...
-1
votes
0answers
12 views

Notification of SMTP server exception

I am facing a problem that certain emails that my application is sending is not getting delivered to the end users due to an SMTP server exception. The way the email flows is from my application to ...
1
vote
1answer
18 views

Jedis - When to use returnBrokenResource()

When exactly we should use this method. On JedisConnectionException, JedisDataException or for any JedisException. There is no good API documentation for Jedis to my knowledge. try { Jedis jedis ...
2
votes
1answer
33 views

CXF/ JAX-RS : Return Custom response from interceptor

We need to return custom error code and error message when exception occurs during REST invocation. We have created a exception mapper provider, it works well for the exceptions from the application ...
0
votes
3answers
39 views

Spring At least one base package must be specified exception

When I'm compiling my project it gives this error and stop compiling org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ...
-5
votes
2answers
56 views

ClassNotFound Exception when using arrays in Java

Hello! I'm trying to create a chunk of java which allows me to call classes depending on strings called from an array - however, I can't seem to get it to work, unfortunately. If anyone could help I'd ...
-1
votes
2answers
69 views

Why return null after catching an Exception? [closed]

I've encountered some code which is catching RestClientException and then returning null. I think this is bad practice ? Why would a developer (who has since moved on) do this ? The method in which ...
0
votes
0answers
29 views

Catch exception of web start java applet

I start a java applet on my website with deployJava.js from Oracle. var attributes = { id:'applet', code:'dummy.Applet.class', archive: contextPath + ...
0
votes
1answer
25 views

Java - Netbeans: Opening form *as javax.swing.JPanel. Could not use the declared superclass: *

When i press on the "Design view" of my jPanel, i receive the error: Form loaded with errors: Error in loading component: [JPanel] -> (an instance) Cannot create instance of (class name) ...
1
vote
5answers
42 views

Java abstract classes which throw

If I have an abstract class with the following function - abstract class A{ void foo(String s) throws Exception{ throw new Exception("exception!"); } } And then another class that ...
0
votes
3answers
27 views

Place an element of an Array as a Label on a JButton

So Im trying to challenge myself and create a simple word processor application. I'm currently setting up the keyboard and having some trouble with the keys. I have a String array with each of the ...
2
votes
1answer
41 views

Exception in Tomcat7

I am not sure why this has started to happen but today I tried to use my Tomcat7 after a long time and whenever I am trying to access any application it is throwing me this error: type Exception ...
-5
votes
3answers
74 views

Here's the codes, I think they're all right, however, the JRE doesn't think so [closed]

Here are the codes of server import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.io.BufferedReader; import java.io.PrintWriter; ...
1
vote
1answer
53 views

Does Java7's multiple-exception catch clause use duck typing?

http://docs.oracle.com/javase/7/docs/technotes/guides/language/catch-multiple.html#multiple A catch block that handles multiple exception types creates no duplication in the bytecode generated by ...
0
votes
1answer
39 views

Find Exception type

If I have the following code: try { //some offensive code } catch (Exception e) { String type = //get type of e Assert.fail(type + " thrown."); } Is there a way I can get the type ...
0
votes
0answers
28 views

EhCache with Hibernate: getting LazyInitializationException after a while

We are using EhCache with an application built on Hibernate. The application classically displays webpages using data retrieved from the database using Hibernate. The data can now be cached by ...
0
votes
2answers
56 views

Getting ClassCastException while accessing list elements individually in java

Below is my code in Java, inside a class named DnsTime: List<DnsTime> list = new ArrayList<DnsTime>(); String selUrl = "http://www.abc.com"; String query = "select ...
0
votes
2answers
45 views

no such bean definition exception in spring

I am new to the concepts of spring and hibernate I am using collections in my simple spring program.My idea is to store an authot name,address and id into collection.its a simple spring framework but ...
0
votes
2answers
46 views

Static functions and exception

Are there any 'best practices' or do's/dont's while throwing/handling exceptions in/from static methods ? Or Is there any difference in exception handling wrt static and non-static member functions ? ...
0
votes
1answer
45 views

LinkedHashMap ConcurrentModificationException Error

In my java program for an MUDRPG there are two threads at the moment (if I'm not mistaken, I didn't write the engine). One thread is purely graphical and displays all of the Gui objects, and another ...
0
votes
1answer
14 views

SWT List Drag and Drop exceptions

I am coding appliction using SWT. There are two instances with org.eclipse.swt.widgets.List which contains String - when program starts first one has serveral elements, second is empty. I am ...
2
votes
2answers
97 views

Use case of no-argument constructor in Exception or its subclasses

I was going through all the classes that extend Exception or Throwable and I was thinking, what is the real use case of having a no-argument constructor in these classes? Because if you provide this ...
0
votes
1answer
29 views

Java SSH Connection: Getting an empty exception

I'm using the following code to make an SSH connection and download a file to the SSH server through curl. It gives me an exception without a message. Not really sure what to do at this point. try{ ...
0
votes
1answer
33 views

onFailure is never called when a exception is throwed in server

When a called the persist() method from server, a exception is throwed after a validation in uniques of a email. The problem is that onSuccess method from client is called, instead of onFailure. Here ...
1
vote
2answers
59 views

Exception java.lang.NoSuchMethodError on java.util.Deque.push

It's really strange, Google Developer Console, error reporting page. As it seems, my application crashes on several Android devices. The exception log provided says: java.lang.NoSuchMethodError: ...
0
votes
1answer
62 views

NullPointerException in java exercise assignment

He I am a beginner in java and I am working on a exercise where I need to draw a car. The code in my book does not work and I don't know why. I am not a total noob to java I know classes, objects, ...

1 2 3 4 5 71