JBuild调试时  怎么出现一个一模一样的文件
比如:
abc.java
结果又出现abc.java调试不了怎么回事??

解决方案 »

  1.   

    右键点击abc.java  选择clean 功能试一试
      

  2.   

    不行啊出现一个
    // JBuilder API Decompiler stub source generated from class file
    // 2006-9-14
    // -- implementation of methods is not available// Imports
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.io.FileOutputStream;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JPasswordField;
    import javax.swing.JTextArea;
    import javax.swing.JTextField;public class SendMail1 extends JFrame implements WindowListener, ActionListener, Runnable {  // Fields
      JPanel north;
      JPanel center;
      JPanel south;
      JLabel from;
      JLabel user;
      JLabel psw;
      JLabel to;
      JLabel smtpserver;
      JTextField from1;
      JTextField user1;
      JPasswordField psw1;
      JTextField to1;
      JTextField smtpserver1;
      JTextArea message;
      JButton 发送;
      int flag;
      static FileOutputStream fos;
      static SendMail1 f;  // Constructors
      SendMail1() { }  // Methods
      public static void main(String[] args) { }
      public void run() { }
      public void actionPerformed(ActionEvent e) { }
      public void windowOpened(WindowEvent e) { }
      public void windowClosing(WindowEvent e) { }
      public void windowClosed(WindowEvent e) { }
      public void windowIconified(WindowEvent e) { }
      public void windowDeiconified(WindowEvent e) { }
      public void windowActivated(WindowEvent e) { }
      public void windowDeactivated(WindowEvent e) { }
      public void killtask() { }
      public void download() { }
    }