Yes you have to synchronize access to collections objects.
Alternatively, you can use the "concurrent" synchronized wrappers around any existing object. See Collections.synchronizedCollection(). For example:
List<String> safeList = Collections.synchronizedList( originalList );
However all code needs to use the safe version, and even so iterating while another thread modifies will result in problems.
To solve the iteration problem, copy the list first. Example:
for ( String el : safelList.clone(safeList.clone() )
{ ... }
For more optimized, thread-safe collections, also look at java.util.concurrent.
