这是另外一个类:供应商信息.java,上面那个是frame.java
public class 供应商信息 {
  boolean packFrame = false;
  /**
   * Construct and show the application.
   */
  public 供应商信息() {
    Frame1 frame = new Frame1();
    // Validate frames that have preset sizes
    // Pack frames that have useful preferred size info, e.g. from their layout
    if (packFrame) {
      frame.pack();
    }
    else {
      frame.validate();
    }    // Center the window
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    Dimension frameSize = frame.getSize();
    if (frameSize.height > screenSize.height) {
      frameSize.height = screenSize.height;
    }
    if (frameSize.width > screenSize.width) {
      frameSize.width = screenSize.width;
    }
    frame.setLocation( (screenSize.width - frameSize.width) / 2,
                      (screenSize.height - frameSize.height) / 2);
    frame.setVisible(true);
  }
  /**
   * Application entry point.
   *
   * @param args String[]
   */
  public static void main(String[] args) {
   SwingUtilities.invokeLater(new Runnable() {
      public void run() {
        try {
          JFrame.setDefaultLookAndFeelDecorated(true);
          //UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        }
        catch (Exception exception) {
          exception.printStackTrace();
        }
        new Frame1().setVisible(true);
                //new 供应商信息();
      }
    });
  }
}