| | |
| | | import com.zy.core.model.protocol.RgvProtocol; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Arrays; |
| | | import java.util.Collections; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public class LocFCSUtils { |
| | | |
| | | |
| | | public static void main(String[] args) { |
| | | ArrayList<String> locS = new ArrayList<>(); |
| | | locS.add("0102101"); |
| | | locS.add("0100102"); |
| | | locS.add("0100101"); |
| | | locS.add("0101001"); |
| | | locS.add("0107101"); |
| | | locS.add("0108101"); |
| | | System.out.println(Arrays.toString(locS.toArray())); |
| | | ArrayList<String[]> locS1 = LocFCSUtils.getLocS(locS); |
| | | for (String[] loc : locS1) { |
| | | System.out.println(Arrays.toString(loc)); |
| | | } |
| | | |
| | | } |
| | | public static ArrayList<String[]> getLocS(ArrayList<String> locMastDemoListF) { |
| | | ArrayList<String[]> locS = new ArrayList<>(); |
| | | // 提取数据 |