Problem : I have a legacy class that contains a new() call to instantiate a LoginContext object: public class TestedClass […]
Category: Java
“No X11 DISPLAY variable” – what does it mean?
Problem : I am trying to install a Java application on my Linux machine (Slackware). I have received the following […]
Why is the max recursion depth I can reach non-deterministic?
Problem : I decided to try a few experiments to see what I could discover about the size of stack […]
How to convert a char to a String?
Problem : I have a char and I need a String. How do I convert from one to the other? […]
Manifest merger failed : Attribute application@appComponentFactory cant solve this
Problem : i am new in android and have an app that when build my project have this Error :: […]
casting Object array to Integer array error
Problem : What’s wrong with the following code? Object[] a = new Object[1]; Integer b=1; a[0]=b; Integer[] c = (Integer[]) […]
Is there a Java API that can create rich Word documents? [closed]
Problem : Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. We don’t allow […]
The specified child already has a parent. You must call removeView() on the child’s parent first (Android)
Problem : I have to switch between two layouts frequently. The error is happening in the layout posted below. When […]
How to decompile a whole Jar file? [closed]
Problem : Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. We don’t allow […]
MouseMotionListener in Java Swing, using it with components inside components etc
Problem : I am working on a Touch User interface in Swing. While I know this isn’t optimal, I am […]