I have a simple JFrame with a JList, a JTable and two JButton as below

I would like to copy selected item(s) from the List to Table with the “Add” button, and remove item(s) in Table (when added) by the “Remove” button.
Thanks for any help
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to add a listener to the buttons that gets the selected item from the list and modifies the table accordingly. Here is some code to get you started: