看,一个小例子。超简单。
import javax.swing.JFrame;
import javax.swing.JTable;
public class TestDriver extends JFrame{
private JTable table;
public TestDriver(String s){
super(s);
this.table = new JTable(5,5);
this.add(table);
this.pack();
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args){
TestDriver t = new TestDriver("这是一个表格");
}
}
在java中 swing包下有table的控件,就想当于EXCEL的表格
如果是桌面程序,已经有现成的控件了;如果是web程序,可以考虑用ext等js框架
awt、swing都可以做
看你的需求了
具体方法自己查资料写吧
锻炼