Results 1 to 4 of 4
Thread: From txt to JTable.
- 10-17-2009, 08:56 PM #1
Senior Member
- Join Date
- Sep 2009
- Location
- Sweden/Borås
- Posts
- 107
- Rep Power
- 0
From txt to JTable.
Evening forum.
Have a problem with my AdressBook. I need to read from txt (no problem there) split every word (no problem there). List it with JTable. (big problem).
code to read and split
Code to show JTable.Java Code:FileReader fr = new FileReader("c://java/readme.txt"); BufferedReader br = new BufferedReader(fr); while ((contens = br.readLine())!=null){ wsplit = contens.split(";"); .....
What i have tryed with no succes is.Java Code:public class myTable extends AbstractTableModel { private String[] columnNames = {"First Name", "Last Name", "Adress", "Post Nr", "Phone nr"}; private Object[][] data = { {"ocean", "adressbook", "Borås", "512 33", "0318111"} };
Dont think i have to mention that im quite new to this. And I would be happy for any advice on how this could be done.I have read what there is to read about JTable on sun´s website, but cant find any information on how to add from external file.Java Code:private Object[][] data = { {wsplit[0], wsplit[1], wsplit[2],wsplit[3], wsplit[4] } };
/ Best Regards Ocean
-
I would recommend that you extend DefaultTableModel and not AbstractTableModel as this is far easier to work with: it does most of the hard work for you. (Where's camickr when you need him?)
- 10-17-2009, 09:20 PM #3
Senior Member
- Join Date
- Sep 2009
- Location
- Sweden/Borås
- Posts
- 107
- Rep Power
- 0
Thank you again. Found helpful information at this link.
Using JTable and DefaultTableModel
Will come back when i solved it.
-
Similar Threads
-
JTable
By ivvgangadhar in forum AWT / SwingReplies: 1Last Post: 07-26-2009, 04:59 AM -
Jtable
By prashant in forum Java AppletsReplies: 0Last Post: 07-19-2009, 07:04 PM -
Regarding the JTable
By suresh.uvce in forum AWT / SwingReplies: 5Last Post: 02-11-2009, 06:46 AM -
Jtable duplicates through Hashtable (JTable condition problem) my assignment plz help
By salmanpirzada1 in forum Advanced JavaReplies: 2Last Post: 05-15-2008, 10:15 AM -
Help with JTable
By fernando in forum AWT / SwingReplies: 1Last Post: 08-07-2007, 06:57 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks