Edit in-place Swing Components
Does anyone know of a Swing开发者_如何学编程 component that is spreadsheet like in nature, allows in-place editing and can be bound (in some fashion) to an array?
If you do not need anything fancy you might use a standard swing JTable
(see e.g. here). It allows you to use in-place editing and you can define your own table model.
精彩评论