[quote=tiagosarno]Pessoal,
sou bem iniciante na linguagem ainda e gostaria como posso fazer para criar um método que mostra a hora do sistema dinâmicamente como em java-script onde os segundos vão passando: tipo 22:45:36
Alguém tem este método ou sabe como fazer? Desde já agradeço …
Tiago [ HcK ]
[/quote]
Tiago,
Vejo que já é usuário no GUJ desde 2007
e por isso não se entendi bem sua dúvida dizendo
que é iniciante na linguagem e não sei se o que vou postar
vai te ajudar. De qualquer maneira vou tentar.
Olhe as informações abaixo:
Oi amigo encontrei esse vídeo no youtube que acho que atende
para colocar em qualquer lugar também, inclusive em jframes, jpanels, jlabels e etc.
http://www.youtube.com/watch?v=8PWzqJFhCaQ
Testei aqui e rodou direitinho.
Segue o código que digitei pegando no youtube:
Fiz no NetBeans para ir mais rápido.
import java.util.Calendar;
import java.util.GregorianCalendar;
public class Frame extends javax.swing.JFrame {
/**
* Creates new form Frame
*/
public Frame() {
initComponents();
new Thread(){
@Override
public void run(){
for(;;){
dataEHora();
try{
sleep(1000);
}catch(InterruptedException ie){
ie.printStackTrace();
}
}
}
}.start();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
lData = new javax.swing.JLabel();
lHora = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
lData.setFont(new java.awt.Font("Tahoma", 0, 24)); // NOI18N
lData.setForeground(new java.awt.Color(51, 51, 255));
lData.setText("jLabel1");
lHora.setFont(new java.awt.Font("Tahoma", 0, 24)); // NOI18N
lHora.setForeground(new java.awt.Color(51, 51, 255));
lHora.setText("jLabel2");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(lData)
.addGap(18, 18, 18)
.addComponent(lHora)
.addContainerGap(220, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(lData)
.addComponent(lHora))
.addContainerGap(260, Short.MAX_VALUE))
);
pack();
}// </editor-fold>
/**
* @param args the command line arguments
*/
public void dataEHora(){
Calendar cal = new GregorianCalendar();
int dia = cal.get(Calendar.DAY_OF_MONTH);
int mes = cal.get(Calendar.MONTH);
int ano = cal.get(Calendar.YEAR);
int hora = cal.get(Calendar.HOUR);
int minuto = cal.get(Calendar.MINUTE);
int segundo = cal.get(Calendar.SECOND);
lData.setText("Data:"+dia+"/"+(mes+1)+"/"+ano);
lHora.setText("Hora:"+hora+":"+minuto+":"+segundo);
}
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(Frame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Frame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Frame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Frame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Frame().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JLabel lData;
private javax.swing.JLabel lHora;
// End of variables declaration
}
Abraço.