Well, I'm developing a simple application that when started starts displaying random images and text on the screen just for learning and what I have so far is this:
package br.com.appteste;
import java.util.Random;
import java.util.Timer;
imp...
Hello, I have a class called Usuario which is abstract and I have the class UsuarioComum and Administrador that inherit from Usuario , I am using JPA annotations to generate the automatic database, I want it to generate...
I'm using Scribe to authenticate with API of Google Calendar .
Authentication with Google is done successfully returning accessToken with no problems.
When I try to add a CalendarList , through the following code...
I have the following json :
{
"home":[
{
"id":"1",
"menu":"1",
"title":"Titulo 1",
"image":"image01.jpg",
"url":"http:\/\/www.exemplo.pt\/images\/image01.jpg"
},
{...
I found this code that works well for the button:
public class CustomJToolTipTest {
private JFrame frame;
public CustomJToolTipTest() {
initComponents();
}
public static void main(String[] args) {
SwingUtilit...
I have an application where I use the btprevious2.setOnTouchListener method to perform quick page switching.
btprevious2.setOnTouchListener(new View.OnTouchListener() {
private Handler handler;
@Override...
I needed to get all the answers that are inside boolean respostas1 and play inside another variable so I can send it to the MySQL database.
The way I did it, it turned me all false.
For example, I have 4 questions, it should bring m...
I'm having trouble trying to make JBoss run on the Eclipse self. I installed JBossASTools, downloaded the latest version of JBoss, and did the default installation procedure for new server in Eclipse (with the configuration file standalone-fu...
I put images inside a package in the project. I need at run time to display this image in an external program (in the notify-send case of linux), this program needs the exact path of the image, so I had the idea of copying the image into the tem...
I'm studying the book of Deitel Java how to program and I came across an exercise that asks to make a salary adjustment in 10%, my question is in the method of readjustment, my goal is to show on the console screen the salary of the two before t...