Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GridView in Java

I'm a .Net Developer and new to Java environment. I'm currently I'm using Netbeans 7.1. In Windows Forms there are DatagridView, ListBox, and ListView. What are the equivalent controls present in Swing, specifically DatagridView? How can I bind those grid in ResultSet?

Suggested links for tutorial are very much appreciated.

like image 408
SkyDrive Avatar asked Mar 04 '12 10:03

SkyDrive


1 Answers

This page describes the component list available in Swing. For GridView you can choose JTable.


Also if you are willing to use SwingX, then there you will find, JXTable, JXTreeTable.

like image 80
Tapas Bose Avatar answered Nov 13 '22 06:11

Tapas Bose