I am still new to java so please bear with me. I have searched but can't seem to find what I am looking for.
I have used NetBeans to create a simple GUI Java application. I need my program to take all of the text fields from the java application and import them into an already created excel spreadsheet. I need to know where to start to look for information to do this. In my search I have come accross Apache POI-HSSF but not sure if thats what I need.
Example:
Java application has two text fields that the user types in. Name and Phone number
At the bottom when the user clicks submit, I want those two text fields to input in the spreadsheet.
Lets say assign name to column A and phone number to column B
I would also like for each time the person clicks submit, the info writes into the next available row...so the data does not overwrite it just adds.
I already have a spreadsheet set up and just want to keep adding data to it.
Sorry if this has been asked before. I have searched and can't quite find the answer. Could someone point me in the right direction?