I have a Java application, and I need an user-friendly component for entering a lot of pairs easily, I think the most friendly way to do it is make a table, somewhat like a spreadsheet and let them edit that manually, but i'm not sure what listeners to use for that, and it seems rather complicated, what I want to know is if there is a nicer component for that task.

link|improve this question

67% accept rate
3  
You've tried JTable and it doesn't meet your needs? It seems like exactly the component you want. – kdgregory Feb 14 at 0:35
feedback

2 Answers

up vote 4 down vote accepted

I would use a JTable. You can write a class which extends AbstractTableModel to handle display, validation, etc. It handles most of the work for you. You just need to override the few methods you care about. The Java tutorial on Tables has a pretty good overview, but pretty much all you need to do to make your cells editable is have isCellEditable() return true and implement an appropriate setValueAt() function.

link|improve this answer
Thank you, that's what I'll do, I didn't know about the "isCellEditable" – gosu kiwi Feb 15 at 21:31
feedback

http://docs.oracle.com/javase/tutorial/uiswing/components/table.html ~includes how to use JTables, and how to register changes.

link|improve this answer
3  
-1 this answer was given 2 hours earlier. There is no need to clutter the forum with a duplicate answer. – camickr Feb 14 at 4:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.