如何在JFrame上的java中绘制1024个1024跨网格单元格?

时间:2012-05-17 17:55:46

标签: java swing java-2d

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import javax.swing.JComponent;
import javax.swing.JPanel;

public class Grid extends JComponent
{

    public void paint(Graphics g){

        super.paintComponent(g);
        Graphics2D graphics = (Graphics2D) g;
        int w = 1024*2;
        int h = 1024*2;

        for(int i=0; i<1024; i++)
        {
            graphics.drawLine(i, 0, i, 1024);
            //graphics.setColor(Color.red);

        }

        for(int j=0; j<1024; j++)
        {
            graphics.drawLine(0, j, 1024, j);
        }

    }

}

我需要绘制1024个十字1024个单元格并为几个单元格着色。单元格应显示在JFrame上。在java中执行此操作的最佳方法是什么?请发一些代码......

2 个答案:

答案 0 :(得分:3)

您可以使用一些JTable功能:

class CellCoords{
    public int x, y;
    public CellCoords(x, y){
        this.x = x; this.y = y;
    }
}
TableModel dataModel = new AbstractTableModel() {
    public int getColumnCount() { return 1024; }
    public int getRowCount() { return 1024;}
    public Object getValueAt(int row, int col) { return new CellCoords(row, col); }
};
JTable table = new JTable(dataModel);

Swing Tutorials

中的更多示例
public class ColorRenderer extends JLabel
                           implements TableCellRenderer {
    ...
    public ColorRenderer(boolean isBordered) {
        this.isBordered = isBordered;
        setOpaque(true); //MUST do this for background to show up.
    }

    public Component getTableCellRendererComponent(
                            JTable table, Object color,
                            boolean isSelected, boolean hasFocus,
                            int row, int column) {
        // Do things based on row and column to decide color
        Color newColor = (Color)color;
        setBackground(newColor);

        return this;
    }
}

通常,“如何使用表格”文档会有很多帮助。

答案 1 :(得分:1)

我建议开发一个自定义摇摆组件。然后将此组件添加到JFrame。

Creating a custom component比听起来容易得多。只需创建一个扩展JComponent或Component的新类,并覆盖paint(Graphics)方法。

在paint方法中,只需使用for循环使用Graphics方法drawLinefillRect等绘制网格。它非常简单灵活。

这为您提供了良好的开端,然后您可以根据需要调整大小,滚动等。