I have a project where all the Hibernate configuration part is. In the final project I will have a few more projects (Person Register for example) that will need the project that has Hibernate.
How do I correctly set up Hibernate project impo...
What is it different from the JVM? And why did they create it? What advantage to using it?
Can you use it in mobile?
Is Oracle official? Ready for use? Do you have any restrictions?
I'm developing application with Java Swing, but the screens are not getting windowed out of windows. Example screen.
I wanted to leave Windows with the same face, with the title bar with minimize button, maximize and close. The way it i...
To send a primitive data is simple, but when it comes to complex data like the one shown below, an exception is thrown:
java.lang.RuntimeException: Can not serialize: Person {name = given, address = given etc ...}
Most of the tutorials...
If you have ever encountered the error message: Erro: não é possível localizar nem carregar a classe principal probably will not be able to execute your codes in Java.
In the eclipse I came across this message:
Erro: não é possív...
I'm trying to draw an arrow inside a circle (similar to a clock hand), but I can not align the tip of the arrow with the rest of the line.
I made the this "arrow" based on this SOEn response, but I can not get it to be properly positioned wi...
Based on the question link
I know I can use ${project.build.sourceDirectory} to access my source files directory. If I want to access the resource files directory, the resources , how do I? ${project.build.resources.resource...
I'm testing the Facebook Login API, however clicking the Signing in with Facebook button will not happen, only the bar where the time is black for a moment and then comes back with the color of the application defined in styles.xml file...
I would like to know, with an example if possible, how do I send a WhatsApp message to a group created by someone else using venomous0x or yowsup?
The shipping code is this:
public String sendMessage(String to, String message) throws What...
I need to separate the characters of a string into numbers and letters.
Ex:
Entry:
"A1B2C3D2Z9"
Output:
List<Character> numeros = { '1','2', '3' }
List<Character> letras = { 'A', 'B', 'C' }
I use a for to...