Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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 ?

share|improve this question
Does it even compile? myList.add() takes only one argument... – sp00m Dec 19 '12 at 13:12
It's an overloaded method – Mattrition Dec 19 '12 at 13:15
@Mattrition Ah ok, you're right, my fault. Never used it yet though. – sp00m Dec 19 '12 at 13:16

4 Answers

up vote 3 down vote accepted

You can do the following things

String [] myarray = command.split("");
List<String> commandList = Arrays.asList(myarray);  
share|improve this answer
1  
wow thank you so much. it worked – Oxtis Dec 19 '12 at 14:10
@user1872886 You are welcome buddy. – NullPointerException Dec 19 '12 at 15:46

You should use charAt() like this:

List<Character> commandList = new ArrayList<Character>();
for(int i = 0; i < command.length(); i++) {
    commandList.add(command.charAt(i));
}
share|improve this answer
@whoever downvoted: care to explain? – Adam Arold Dec 19 '12 at 13:14
char[] charArray = command.toCharArray();
Character[] charObjectArray = ArrayUtils.toObject(charArray);
share|improve this answer

Tell me, what incorrect? I ran your code and all was all right...you have the normal and working code..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.