JAVA将数据库中的数据放入表格中

想请教各位大虾,怎么样把多个数据库中的内容要到表格中,JTable建立表个,好象是要用到Vector吧,但不晓得怎么弄,能不能告诉我下哦,最好能有个编了的程序哦,参考一下... 想请教各位大虾,怎么样把多个数据库中的内容要到表格中,JTable建立表个,好象是要用到Vector 吧,但不晓得怎么弄,能不能告诉我下哦,最好能有个编了的程序哦,参考一下,先谢谢拉 展开
 我来答
匿名用户
2013-06-23
展开全部
public Students_manage()
{
try {
st=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
rs=st.executeQuery("select * from stu_informations order by s_id asc");
while(rs.next())
{
rows++;
}
rs.beforeFirst();
datas=new Object[rows][11];
while(rs.next())
{
datas[index][0]=rs.getString(1);
datas[index][1]=rs.getString(2);
datas[index][2]=rs.getString(3);
datas[index][3]=rs.getString(4);
datas[index][4]=rs.getString(5);
datas[index][5]=rs.getString(6);
datas[index][6]=rs.getString(7);
datas[index][7]=rs.getString(8);
datas[index][8]=rs.getString(9);
datas[index][9]=rs.getString(10);
datas[index][10]=rs.getString(11);
index++;
}
} catch (SQLException e) {
// TODO 自动生成 catch 块
e.printStackTrace();
}

dtm=new DefaultTableModel(datas,col);
table=new JTable(dtm);
table.setPreferredScrollableViewportSize(new Dimension(900,400));
table.setAutoResizeMode(JTable.AUTO_RESIZE_SUBSEQUENT_COLUMNS);
j=new JScrollPane(table);
匿名用户
2013-06-23
展开全部
public list user (User user)
{
//前面先建立数据库连接查询你要的表程序省略了
String sql="select * from user where name=? and sex=?"
user.setName(1,getString("name"));
user.setSex(2,getString("sex"));
List list = new ArrayList()
list.add(user);

}

然后页面用<lterator>标签放进去就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-06-23
展开全部
多个数据库的啊内容??? 先建实体类把! 把你的那些数据都压到泛型集合中 然后再来想办法组织到表中
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式