/**
* <p>判断数组中是否存在相同的数值</p>
* @param arr
* @return true:存在相同的 false:没有相同的
*/
public boolean judgeOnly(String [] arr)
{
Set<String> set = new HashSet<String>();
for (String str : arr)
{
set.add(str);
}
if (set.size() == arr.length)
{
return false;
}
return true;
}