super("欢迎进入!");
image = new JLabel(new ImageIcon("image/version.jpg"));
this.setLayout(null); //左边的面板
scrollleft=new ScrollPane();
this.add(scrollleft);
scrollleft.setBounds(0, 70, 200, 151);
newpro=new JLabel();
//左边的jlabel
this.add(newpro);
newpro.setBounds(70, 30, 70, 40);
newpro.setText("最新产品");
//左边的表格

str=new String[]{"酒名","价格"};
obj=new Object[7][2];
tableleft=new JTable(obj, str);
tableleft.setRowHeight(21);
scrollleft.add(tableleft);jtable和jscrollpane都定义完了,但是这样写不显示啊 请问如何解决?