I want to extract values on clicking the button save. Extract values from JTextField and JTable rows and columns. Just want a rough idea h
save
JTextField
JTable
From the jtextfield you can invoke the getText method to get the contents of the textfield in the form of a String like:
getText
String
String myString = textField.getText();