ArrayList<Object> list = new ArrayList<Object>();
list.add(1);
list.add("Java");
list.add(3.14);
System.out.println(list.toString());

I tried:

ArrayList<String> list2 = (String)list; 

But gave me a compile Error.

link|improve this question
5  
Why do you want to do that? I mean its not safe. Have a look at the example. – athspk Jan 3 '11 at 1:00
6  
You're putting non-strings into the list. What is your expectation of what happens if you force them to be strings? – quixoto Jan 3 '11 at 1:01
3  
I assume you meant: ArrayList<String> list2 = (ArrayList<String>)list; – Costi Ciudatu Jan 3 '11 at 1:05
feedback

4 Answers

up vote 15 down vote accepted

Since this is actually not a list of strings, the easiest way is to loop over it and convert each item into a new list of strings yourself.

List<String> strings = new ArrayList<String>();
for (Object object : list) {
    strings.add(object != null ? object.toString() : null);
}

Note that you should be declaring against the interface (java.util.List in this case), not the implementation.

link|improve this answer
3  
I like how null values are preserved this this implementation. – pst Jan 3 '11 at 1:12
Thanks :-) It worked for what i wanted. – rtf Jan 3 '11 at 1:17
feedback

It's not safe to do that!
Imagine if you had:

ArrayList<Object> list = new ArrayList<Object>();
list.add(new Employee("Jonh"));
list.add(new Car("BMW","M3"));
list.add(new Chocolate("Twix"));

It wouldn't make sense to convert the list of those Objects to any type.

link|improve this answer
Unless they have Object#toString() method overridden. However, the whole type conversion from X to String for other purposes than human presentation does indeed not make much sense. – BalusC Jan 3 '11 at 1:17
feedback

Using guava:

List<String> stringList=Lists.transform(list,new Function<Object,String>(){
    @Override
    public String apply(Object arg0) {
        if(arg0!=null)
            return arg0.toString();
        else
            return "null";
    }
});
link|improve this answer
feedback

Your code ArrayList<String> list2 = (String)list; does not compile because list2 is not of type String. But that is not the only problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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