String集合转Integer集合
Set faceList=new TreeSet<>();
List faceListk = faceList.stream().map(Integer::parseInt).collect(Collectors.toList());
Set faceList=new TreeSet<>();
List faceListk = faceList.stream().map(Integer::parseInt).collect(Collectors.toList());