 |
AppletTalk.com Java discussions newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Guest
|
Posted: Fri Jun 16, 2006 5:24 am Post subject: Tables In Java |
|
|
Hi,
I was wondering if someone can help me out here please. I am creating a
JTable and displaying it in a window but it gives me Array Out Of
Bounds Exception. The code is as follows
Object[][] data = {
{"j"},
{"j"},
{"j"},
{"j"},
{"j"},
{"j"},{"j"},{"j"},{"j"},{"j"},{"j"} };
String[] columnNames = {"a",
"a","a","a","a","a","a","a","a","a","a"};
JTable table = new JTable(data,columnNames);
JScrollPane scrollPane = new JScrollPane(table);
Thanks a lot for help!!!> |
|
| Back to top |
|
 |
Guest
|
Posted: Fri Jun 16, 2006 7:10 am Post subject: Re: Tables In Java |
|
|
Thanks you so much. I finally figured it out. I have a problem though.
Lets
say i have names( And other information) seperated by ",". How can i
display them in different fields. I wrote it as follows but it displays
it in one line. Any help will be much appreciated.
Thanks a lot!!!
Object[][] data = { { name, last name, family, series1, series2,
series3,series4, series1, series6, series7, series8} };
String[] columnNames = {"Event name",
"Event type",
"Event series",
"Event eventDate",
"Event eventStartTime","Event eventEndTime","Event
sellStartDate","Event sellEndDate","Event price","Event
performance","Event sponser"};
The names, lastname etc is all display in one line.
Thanks a lot!!!.
azzamqazi (AT) gmail (DOT) com wrote:
| Quote: | Hi,
I was wondering if someone can help me out here please. I am creating a
JTable and displaying it in a window but it gives me Array Out Of
Bounds Exception. The code is as follows
Object[][] data = {
{"j"},
{"j"},
{"j"},
{"j"},
{"j"},
{"j"},{"j"},{"j"},{"j"},{"j"},{"j"} };
String[] columnNames = {"a",
"a","a","a","a","a","a","a","a","a","a"};
JTable table = new JTable(data,columnNames);
JScrollPane scrollPane = new JScrollPane(table);
Thanks a lot for help!!! |
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|