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
15 lines
366 B
Java
package TestAttendanceAllowance;
|
|
|
|
import com.google.common.collect.Lists;
|
|
|
|
import java.util.List;
|
|
|
|
public class Test2 {
|
|
@org.junit.Test
|
|
public void testAnalysis() throws Exception{
|
|
String str = "11,22,33,44";
|
|
List<String> applyClassList = Lists.newArrayList(str.split(","));
|
|
System.out.println(applyClassList.contains("13"));
|
|
}
|
|
}
|