Tagged Questions
Java is an object-oriented language and runtime environment (JRE). Java programs are compiled to bytecode and run in a virtual machine (JVM).
0
votes
0answers
4 views
Spring Java, file not found when loading xml
So I followed a tutorial for Spring that I found online, namely a Hello World, and they have this structure at the end. I tried it and it worked fine, now I created a new Dynamic Web project, Eclipse ...
0
votes
0answers
26 views
How to fix ClassNotLoaded exception Java
Im dealing with a ClassNotLoaded exception and I dont know how to solve this. According to google and other topics I have read, this seems to be an issue of Eclipse debug functionality.
The scenario ...
0
votes
1answer
10 views
Spring 3.0 MVC :Redirect without parameters being added to my url
I'm trying to redirect without parameters being added to my url. I mean after a redirect, my url looks like this: .../success/?param1=xxx¶m2=xxx.
This issue is exactly the same as this Spring ...
0
votes
0answers
8 views
HTTP Get failing for HTTPS with javax.net.ssl.SSLPeerUnverifiedException
I have been using this infrastructure from past couple of months and it was working fine. I used to hit Google with https and get the result. Suddenly, I started getting SSLPeerVerifiedException for ...
0
votes
2answers
20 views
How can I save my Android application so that the end-user can execute it without the Android SDK
I have recently started programming for the Android platform. I have a simple application which I would like to email to someone so that they can execute the application and check how it works.
I am ...
0
votes
3answers
18 views
Find the memory allocated by the JVM
I am looking for an easy way to find out how much memory the JVM on my computer has allocated to a specific process, i have tried using VisualVM, but it cannot find the process.
Any suggestions ?
...
1
vote
1answer
16 views
Java: Can annotations be nested in a class?
I’m trying to understand how this annotation is invoked @WebMethod
import javax.jws.WebService;
import javax.jws.WebMethod;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;
...
-1
votes
0answers
8 views
Are there any resources of nimbus (Swing/Java)? [on hold]
I am looking of resources (tutorials/APIs/documentation) of nimbus. I think this could be a great possibility to give Swing a modern look. All I could find was one tutorial: Nimbus tutorial, this ...
0
votes
0answers
5 views
Octave IDE DomainMath IDE error
I have installed Octave DomainMath IDE to be able to get a Matlab like environment for Octave. However I am getting this error
error: 'javaaddpath' undefined near line 6 column 1
error: ...
0
votes
0answers
8 views
Netbeans - add JPanel to JFrame - issue
I'm using netbeans, I have created a JFrame form with netbeans and it created the following class that I have also edited:
public class Gui extends javax.swing.JFrame {
public Gui() {
...
0
votes
0answers
5 views
Is there a good WADL parser for java - maybe even open source
I am starting to deal with RESTful design and CoAP. I want to use WADL descriptions for available resources and for my work I need a WADL parser for java. Since I read a lot about WADL staff on stack ...
0
votes
2answers
11 views
check a column is hidden in excel file using apache poi
I am trying to parse a xls file using apache poi, Is it possible to check whether a column is hidden or not, Or How can I get the width of a perticular column.
e.g. According to the post here it ...
0
votes
2answers
19 views
java equivalent of python regex
I am new to android development. And now i am struck with a regex pattern. I had tried many things but in vain.
I am trying to find the java equivalent of the regular expression "r'\^\d+\~[A-Za-z~ ...
0
votes
2answers
30 views
Sending an automated SMS message when a button is clicked
I am building an app that needs to send out a predefined text message on the click of a button (imagine a set of three buttons, each sending out a different line of text that has already been defined ...
0
votes
0answers
38 views
How to keep class method names that override\implements another method from being obfuscated?
If I have a Class B that implements Interface A and Proguard isn't aware of the existence of that interface, How can I keep the names of the methods that implements interface A's abstract methods?
...