My java application is using Apache POI to read/write Excel files. As far as I can see, Apache POI includes no support for an spread sheet view GUI.
So my question is this: What is the best way to display an Excel-like spreadsheet view GUI within my application? I know I could parse in all of the spreadsheet info with POI and then output it in some custom java GUI components, but that would be really ghetto... especially with java's GUI (ew).
Any advice is appreciated. Thanks