Analizador lexico de lenguaje c hecho en java
/*
* To change this template, choose Tools | Templates * and open the template in the editor. */ package Main;
import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import javax.swing.JFileChooser;
/** * * @author lazy */ public class GUI extends javax.swing.JFrame { String[] archivo; int NerroresL=0; public GUI() { initComponents(); jMenuItem1ActionPerformed(null); }
/** * 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. */ …ver más…
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) {