List<String> commandList = new ArrayList<String>();
int num = 0;
String command;
command = JOptionPane.showInputDialog(null, "Enter Your Commands Here : ");
while (command.length() > num) {
commandList.add(num, command.substring(num, num+1));
num++;
}
I have the user input a String and I want to store each individual characters from the string into the list.
what I have right now doesn't do that correctly. can someone help me solve this ?
myList.add()takes only one argument... – sp00m Dec 19 '12 at 13:12