You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
366 B
Java

11 months ago
package TestAttendanceAllowance;
10 months ago
import com.google.common.collect.Lists;
import java.util.List;
10 months ago
11 months ago
public class Test2 {
@org.junit.Test
public void testAnalysis() throws Exception{
10 months ago
String str = "11,22,33,44";
List<String> applyClassList = Lists.newArrayList(str.split(","));
System.out.println(applyClassList.contains("13"));
11 months ago
}
}