Ir ao conteúdo
  • Cadastre-se

jHONFK

Membro Júnior
  • Posts

    6
  • Cadastrado em

  • Última visita

Reputação

0
  1. @Cesar de Freitas Henrique Age normal dae adicionado 0 minutos depois @Cucu Sim, limpei o teclado com ele ligado só, mas nao molhei nem nada, ja fiz isso antes e nunca ocorreu algo assim
  2. @Cesar de Freitas Henrique iniciei e o prob4lema con7tin7ua, n7o caso n7ao ten7ho outro teclado
  3. quando pressiono a tecla n aparece n7, e 7 vice versa quando pressiono a tecla b aparece b4 e 4 vice versa quando pressiono a tecla ; aparece ;0 e 0 vice versa as teclas direcionais (setas) estão desligando o computador alguém sabe arrumar? ja revisei e esta em abnt2
  4. Sou bem iniciante em java e meu projeto consiste em um jogo bem simples de caça palavras, ja determinado por uma imagem de um da internet, so tenho que pegar o que foi digitado na caixa de texto e comparar com um array com as respostas certas, de que forma posso fazer isso? estou meio perdido, desde já obrigado Classe Principal denominada CacaPalavras: package cacapalavras; public class CacaPalavras { public static void main(String[] args) { String[] palavraCorreta; palavraCorreta = new String[]{"esperto","culto","ciumento","cheiroso","caseiro","chato","amigo","leviano", "curioso","bonito"}; } } JFrame denominado Tela: /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package cacapalavras; /** * * @author Claudio */ public class Tela extends javax.swing.JFrame { String[] palavraCorreta; public Tela() { initComponents(); } /** * 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() { botaoConfirmarPalavra = new javax.swing.JButton(); palavraCaixaDigitada = new javax.swing.JTextField(); jLabel1 = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); botaoConfirmarPalavra.setText("Confirmar"); botaoConfirmarPalavra.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { botaoConfirmarPalavraActionPerformed(evt); } }); palavraCaixaDigitada.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { palavraCaixaDigitadaActionPerformed(evt); } }); jLabel1.setText("Digite a palavra que achou:"); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(152, 152, 152) .addComponent(botaoConfirmarPalavra)) .addGroup(layout.createSequentialGroup() .addGap(106, 106, 106) .addComponent(palavraCaixaDigitada, javax.swing.GroupLayout.PREFERRED_SIZE, 175, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGroup(layout.createSequentialGroup() .addGap(130, 130, 130) .addComponent(jLabel1))) .addContainerGap(119, Short.MAX_VALUE)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addContainerGap(145, Short.MAX_VALUE) .addComponent(jLabel1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(palavraCaixaDigitada, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18) .addComponent(botaoConfirmarPalavra) .addGap(74, 74, 74)) ); pack(); }// </editor-fold> private void palavraCaixaDigitadaActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: } private void botaoConfirmarPalavraActionPerformed(java.awt.event.ActionEvent evt) { for(int i=0;i<10;i++) { } } /** * @param args the command line arguments */ 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(Tela.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(Tela.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(Tela.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(Tela.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 Tela().setVisible(true); } }); } // Variables declaration - do not modify private javax.swing.JButton botaoConfirmarPalavra; private javax.swing.JLabel jLabel1; private javax.swing.JTextField palavraCaixaDigitada; // End of variables declaration }

Sobre o Clube do Hardware

No ar desde 1996, o Clube do Hardware é uma das maiores, mais antigas e mais respeitadas comunidades sobre tecnologia do Brasil. Leia mais

Direitos autorais

Não permitimos a cópia ou reprodução do conteúdo do nosso site, fórum, newsletters e redes sociais, mesmo citando-se a fonte. Leia mais

×
×
  • Criar novo...