Re: comparing two String arrays using containsAll
Posted By:
John_Zukowski
Posted On:
Tuesday, April 24, 2001 05:19 PM
The Arrays class has an equals() method that will check for equality of elements. If you want to use containsAll() in case order doesn't matter, then call containsAll() on both arrays.