Java tutorial
/* * 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 practica2s12017_201403877; import com.squareup.okhttp.FormEncodingBuilder; import com.squareup.okhttp.RequestBody; import static practica2s12017_201403877.TestWebServer.getString; /** * * @author CodigoG */ public class Matriz extends javax.swing.JFrame { Graphviz g = new Graphviz(); /** * Creates new form Matriz */ public Matriz() { 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">//GEN-BEGIN:initComponents private void initComponents() { jTextField1 = new javax.swing.JTextField(); jButton1 = new javax.swing.JButton(); jTextField2 = new javax.swing.JTextField(); jButton2 = new javax.swing.JButton(); jTextField3 = new javax.swing.JTextField(); jButton3 = new javax.swing.JButton(); jTextField4 = new javax.swing.JTextField(); jButton4 = new javax.swing.JButton(); jLabel1 = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jTextField1.setFont(new java.awt.Font("Tahoma", 0, 12)); // NOI18N jButton1.setFont(new java.awt.Font("Tahoma", 0, 14)); // NOI18N jButton1.setText("Agregar"); jButton1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jButton1ActionPerformed(evt); } }); jTextField2.setFont(new java.awt.Font("Tahoma", 0, 12)); // NOI18N jButton2.setFont(new java.awt.Font("Tahoma", 0, 14)); // NOI18N jButton2.setText("Eliminar"); jButton2.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jButton2ActionPerformed(evt); } }); jTextField3.setFont(new java.awt.Font("Tahoma", 0, 12)); // NOI18N jButton3.setFont(new java.awt.Font("Tahoma", 0, 14)); // NOI18N jButton3.setText("Buscar Letra"); jButton3.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jButton3ActionPerformed(evt); } }); jTextField4.setFont(new java.awt.Font("Tahoma", 0, 12)); // NOI18N jButton4.setFont(new java.awt.Font("Tahoma", 0, 14)); // NOI18N jButton4.setText("Buscar Dominio"); jButton4.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jButton4ActionPerformed(evt); } }); jLabel1.setFont(new java.awt.Font("Tahoma", 0, 12)); // NOI18N jLabel1.setText("Estado ->"); 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(99, 99, 99).addComponent(jButton1)) .addGroup(layout.createSequentialGroup().addGap(103, 103, 103).addComponent(jButton2)) .addGroup(layout.createSequentialGroup().addGap(52, 52, 52) .addGroup(layout .createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addComponent(jTextField1).addComponent(jTextField2) .addComponent(jTextField3).addComponent(jTextField4, javax.swing.GroupLayout.DEFAULT_SIZE, 174, Short.MAX_VALUE))) .addGroup(layout.createSequentialGroup().addGap(87, 87, 87).addComponent(jButton3)) .addGroup(layout.createSequentialGroup().addGap(77, 77, 77).addComponent(jButton4)) .addGroup(layout.createSequentialGroup().addGap(23, 23, 23).addComponent(jLabel1))) .addContainerGap(70, Short.MAX_VALUE))); layout.setVerticalGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup().addGap(40, 40, 40) .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18).addComponent(jButton1).addGap(30, 30, 30) .addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18).addComponent(jButton2).addGap(28, 28, 28) .addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18).addComponent(jButton3).addGap(29, 29, 29) .addComponent(jTextField4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18).addComponent(jButton4) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 36, Short.MAX_VALUE) .addComponent(jLabel1).addGap(31, 31, 31))); pack(); }// </editor-fold>//GEN-END:initComponents private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed String texto = jTextField1.getText().toLowerCase(); String e[] = texto.split("@"); String f[] = e[1].split("\\."); RequestBody formBody = new FormEncodingBuilder().add("letra", String.valueOf(e[0].charAt(0))) .add("nombre", e[0]).add("dominio", f[0]).build(); String r = getString("MeterMatriz", formBody); jTextField1.setText(""); jLabel1.setText("Estado -> " + r); System.out.println(r); g.generarGrafica("C:\\txt\\Matriz.txt", "Matriz"); }//GEN-LAST:event_jButton1ActionPerformed private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed String texto = jTextField2.getText().toLowerCase(); String e[] = texto.split("@"); String f[] = e[1].split("\\."); RequestBody formBody = new FormEncodingBuilder().add("letra", String.valueOf(e[0].charAt(0))) .add("nombre", e[0]).add("dominio", f[0]).build(); String r = getString("SacarMatriz", formBody); jTextField2.setText(""); jLabel1.setText("Estado -> " + r); System.out.println(r); g.generarGrafica("C:\\txt\\Matriz.txt", "Matriz"); }//GEN-LAST:event_jButton2ActionPerformed private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton3ActionPerformed String texto = jTextField3.getText().toLowerCase(); RequestBody formBody = new FormEncodingBuilder().add("letra", texto).build(); String r = getString("ObtenerLetra", formBody); jTextField3.setText(""); jLabel1.setText("Estado -> " + r); System.out.println(r); g.generarGrafica("C:\\txt\\Letra.txt", "Letra"); }//GEN-LAST:event_jButton3ActionPerformed private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton4ActionPerformed String texto = jTextField4.getText().toLowerCase(); RequestBody formBody = new FormEncodingBuilder().add("dominio", texto).build(); String r = getString("ObtenerDominio", formBody); jTextField4.setText(""); jLabel1.setText("Estado -> " + r); System.out.println(r); g.generarGrafica("C:\\txt\\Dominio.txt", "Dominio"); }//GEN-LAST:event_jButton4ActionPerformed /** * @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(Matriz.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(Matriz.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(Matriz.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(Matriz.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 Matriz().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton jButton1; private javax.swing.JButton jButton2; private javax.swing.JButton jButton3; private javax.swing.JButton jButton4; private javax.swing.JLabel jLabel1; private javax.swing.JTextField jTextField1; private javax.swing.JTextField jTextField2; private javax.swing.JTextField jTextField3; private javax.swing.JTextField jTextField4; // End of variables declaration//GEN-END:variables }