How to add items to the arraylist in java code


Discuss the following java code and how to sort it using the below function:

Q: The following code creates a simple ArrayList:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class Ex01 {
public static void main(String[] args) throws IOException {
BufferedReader userInput = new BufferedReader
(new InputStreamReader(System.in));
ArrayList myArr = new ArrayList();
myArr.add("Zero");
myArr.add("One");
myArr.add("Two");
myArr.add("Three");
}
}

Starting with this provided code, add the following functionality:

1. Add items to the ArrayList, one at a time, based on user typed input. The user will be prompted for the String to be stored in the ArrayList and then hit enter. The user will be able to continue to add items to the ArrayList until they just hit enter without typing anything.

2. Once the user does this (hits enter without typing anything), the program will display all of the elements of the ArrayList, both the index and String values, in a table. It will do this via a single loop.

Solution Preview :

Prepared by a verified Expert
JAVA Programming: How to add items to the arraylist in java code
Reference No:- TGS01934213

Now Priced at $20 (50% Discount)

Recommended (91%)

Rated (4.3/5)