0
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中最好的方法是什么?请贴一些代码...

4

2 回答 2

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 教程中的更多示例

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;
    }
}

通常,如何使用表格文档会提供很大帮助。

于 2012-05-17T18:03:46.457 回答
1

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

创建自定义组件比听起来容易得多。只需创建一个扩展 JComponent 或 Component 的新类并覆盖paint(Graphics)方法。

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

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

于 2012-05-17T18:18:51.597 回答