how can i display the list data to an jtable in the swings!
Posted
by harish0510
on Stack Overflow
See other posts from Stack Overflow
or by harish0510
Published on 2010-05-03T09:02:38Z
Indexed on
2010/05/03
9:08 UTC
Read the original article
Hit count: 163
swings
we are doing hibernate project,then problem is we want to display the users list from the database to userinterface by jtable concept. so, we are not able to display the data using jtable? code: Criteria criteria=session.createCriteria(User.class);//user is pojo class List studentlist= criteria.list(); System.out.println("records"+studentlist);// we want to display the list data to jtable.
© Stack Overflow or respective owner