Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6448434

B89 is slower than B88 clicking TableTest 'start' button the first time.

XMLWordPrintable

      FULL PRODUCT VERSION :
      Java HotSpot(TM) Client VM (build 1.6.0-rc-b88, mixed mode, sharing)
      java TableTest

      Java(TM) SE Runtime Environment (build 1.6.0-rc-b90)
      Java HotSpot(TM) Client VM (build 1.6.0-rc-b90, mixed mode, sharing)

      A DESCRIPTION OF THE REQUEST :
      With B89 after starting TableTest then the FIRST CLICK of the "Start" button (which loads 10,000 or so rows with random data then produces the time to load console text) is much slower than B88 was. B89 takes 656 ms to load the table. B88 only took 67ms to load the table.

      Tests were after a system restart to eliminate any DLLs that may have loaded.

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Running TableTest either after the system has been up for a while or
      TableTest is closed and restarted, I get 47ms with b90.

      However with XP SP2 restart and holding down the left shift key on
      restart (don't start startup items), then running TableTest, the very
      first time for any java app is when its the slowest 308ms, 391ms, 656ms
      & etc. My guess is some dll is being dynamically loaded.

      JUSTIFICATION :
        To speed up Java

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      Faster Table load
      ACTUAL -
      First table test load is quite slow - see below. This is after a system restart.

      C:\USER\JAVA\TABLET~1>java TableTest
      Time taken to create table 10 x 10000 = 656ms
      Time taken to create table 10 x 10000 = 15ms

      ---------- BEGIN SOURCE ----------
      import java.awt.*;
      import java.awt.event.*;
      import javax.swing.*;
      import javax.swing.event.*;
      import javax.swing.table.*;
      import java.util.*;



      public class TableTest extends JFrame {

          public static int COLUMN_COUNT = 10;
          public static int ROW_COUNT;
          public static int [] DATA;
          
          JButton createTableButton = new JButton("Create Table");
          JScrollPane scrollPane;
          JTable table;
          
          public TableTest() {
              JComponent c = (JComponent)getContentPane();
              c.setLayout(new BorderLayout());
              c.add(createTableButton, BorderLayout.NORTH);
              
              createTableButton.addActionListener(new ActionListener() {
                  public void actionPerformed(ActionEvent e) {
                      JComponent c = (JComponent)getContentPane();
                      if (table != null) {
                          c.remove(table);
                          // remove scroll pane from Content Pane instead of table
                          // mine runs faster removing table
                          //c.remove(scrollPane);
                          c.revalidate();
                      }
                      long t1, t2;
                      t1 = System.currentTimeMillis();
                      table = new JTable(new TestTableModel());
                      scrollPane = new JScrollPane(table);
                      c.add(scrollPane, BorderLayout.CENTER);
                      c.revalidate();
                      t2 = System.currentTimeMillis();
                      System.out.println("Time taken to create table 10 x " + ROW_COUNT + " = " + (t2 - t1) + "ms");
                  }
              });
                  
          }
          
          
          
          static class TestTableModel extends AbstractTableModel {
              
              public int getColumnCount() {
                  return COLUMN_COUNT;
              }
              
              public Class getColumnClass(int columnIndex) {
                  return Integer.class;
              }
                
       
              public String getColumnName(int columnIndex) {
                  return String.valueOf(columnIndex);
              }

              
              public int getRowCount() {
                  return ROW_COUNT;
              }
              
              public Object getValueAt(int rowIndex, int columnIndex) {
                  return new Integer(DATA[rowIndex * COLUMN_COUNT + columnIndex]);
              }
          }
          
          public static void main(String[] args) {
              ROW_COUNT = (args.length == 1) ? Integer.parseInt(args[0]) : 10000;
              //Create some random data
              DATA = new int[ROW_COUNT * COLUMN_COUNT];
              Random random = new Random(System.currentTimeMillis());
              for (int i = 0; i < DATA.length; i++) {
                  DATA[i] = (i % COLUMN_COUNT == 0) ? i : random.nextInt() ;
              }
              
              TableTest tt = new TableTest();
              tt.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              tt.setSize(800,600);
              tt.setVisible(true);
          }
          
          
          
      }
      ---------- END SOURCE ----------

            Unassigned Unassigned
            ndcosta Nelson Dcosta (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: