免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1180 | 回复: 0
打印 上一主题 下一主题

share some codes about jtable with you [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-01-05 22:17 |只看该作者 |倒序浏览
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.event.ActionEvent;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JScrollPane;
import javax.swing.JTable;

/*
* Created on 2005-1-4
*
* To change the template for this generated file go to
* Window&ampreferences&Java&Code Generation&Code and Comments
*/

/**
* @author Administrator
*
* To change the template for this generated type comment go to
* Window&ampreferences&Java&Code Generation&Code and Comments
*/
public class tabletest
{
        public static void main(String args[])
        {
                JFrame frame = new PlanetTable();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.show();
        }
}
class PlanetTable extends JFrame
{
        public PlanetTable()
        {
                setTitle("lanetTable";
                setSize(300,400);
               
                table = new JTable();
                table.setModel(new ReadOnlyDefaultTableModel(columnNames,10));
                for (int i = 0; i < table.getRowCount(); i++)
                {
                        for (int j = 0; j < table.getColumnCount(); j++)
                        {
                                table.setValueAt(new Integer(i),i,j);
                        }
                }
               
                table.setBackground(Color.WHITE);
                getContentPane().add(new JScrollPane(table),BorderLayout.CENTER);
       
                JMenuBar menuBar = new JMenuBar();
                setJMenuBar(menuBar);
               
                JMenu selectionMenu = new JMenu("Selection";
                menuBar.add(selectionMenu);
               
                rowsItem.setSelected(table.getRowSelectionAllowed());
                columnsItem.setSelected(table.getColumnSelectionAllowed());
                cellsItem.setSelected(table.getColumnSelectionAllowed());
               
                rowsItem.addActionListener(lSymAction);
                selectionMenu.add(rowsItem);
                columnsItem.addActionListener(lSymAction);
                selectionMenu.add(columnsItem);
                cellsItem.addActionListener(lSymAction);
                selectionMenu.add(cellsItem);
        }
       
        private Object[][] cells =
        {
                {"","","","",""},
                {"","","","",""},
                {"","","","",""},
                {"","","","",""},
                {"","","","",""},
                {"","","","",""}
        };

        private String[] columnNames =
        {
                "lanet","Radius","Moons","Gaseous","Color"
        };
       
        private JTable table;
       
        final JCheckBoxMenuItem rowsItem = new JCheckBoxMenuItem("Rows";
        final JCheckBoxMenuItem columnsItem = new JCheckBoxMenuItem("Columns";
        final JCheckBoxMenuItem cellsItem = new JCheckBoxMenuItem("Cells";       
       
        SymAction lSymAction = new SymAction();
        class SymAction implements java.awt.event.ActionListener
        {

                /* (non-Javadoc)
                 * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
                 */
                public void actionPerformed(ActionEvent event)
                {
                        // TODO Auto-generated method stub
                        Object object = event.getSource();
                        if (object == rowsItem)
                                rowSelected();
                        else if (object == columnsItem)
                                colSelected();
                        else if (object == cellsItem)
                                cellSelected();
                }
        }
       
        public void rowSelected()
        {
                table.clearSelection();
                table.setRowSelectionAllowed(rowsItem.isSelected());
                cellsItem.setSelected(table.getCellSelectionEnabled());
        }
       
        public void colSelected()
        {
                table.clearSelection();
                table.setColumnSelectionAllowed(columnsItem.isSelected());
                cellsItem.setSelected(table.getCellSelectionEnabled());
        }
       
        public void cellSelected()
        {
                table.clearSelection();
                table.setCellSelectionEnabled(cellsItem.isSelected());
                rowsItem.setSelected(table.getRowSelectionAllowed());
                columnsItem.setSelected(table.getColumnSelectionAllowed());
        }
}




import java.util.Vector;

import javax.swing.table.DefaultTableModel;

/*
* Created on 2005-1-4
*
* To change the template for this generated file go to
* Window&ampreferences&amp;Java&amp;Code Generation&amp;Code and Comments
*/

/**
* @author Administrator
*
* To change the template for this generated type comment go to
* Window&ampreferences&amp;Java&amp;Code Generation&amp;Code and Comments
*/
public class ReadOnlyDefaultTableModel extends DefaultTableModel
{
        private int rwCols = 0;    // read/write columne list. we use bits to set it for faster
        public ReadOnlyDefaultTableModel(Object[] columnNames, int numRows)
        {
                super(columnNames, numRows);
        }
        
        public ReadOnlyDefaultTableModel(Object[] columnNames, int numRows, int _rwCols)
        {
                super(columnNames, numRows);
                rwCols = _rwCols;
        }
        
        public boolean isCellEditable(int row, int column)
        {
                if ((column >; 32) || (column < 0)) return false;
                return (rwCols & (1 << column)) != 0;
        }

        public Class getColumnClass(int col)
        {
                Vector v = (Vector) dataVector.elementAt(0);
                Object o = v.elementAt(col);
                return o.getClass();
        }
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP