I am quite new to Java technology. i am doing an application where Imust display the Jtable data in an Excel sheet. I have managed toopen the Excel from java using the Runtime class but failed to getthe data from Jtable and display it in Excel when the user clicks onthe button.
You must use The Poi of jakarta..........
Well, one format that excel can open is .csv. WHich is just comma separatedvalues. SO if you have a table like so:1 | two | three2 | three| fouryou would write a text file like so1,two,three2,three,fourThis file will open up in excel.