-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.java
More file actions
37 lines (32 loc) · 905 Bytes
/
App.java
File metadata and controls
37 lines (32 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.test.httpClient;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.lang3.math.NumberUtils;
/**
* Hello world!
*
*/
public class App {
public static void main( String[] args ){
System.out.println( "Hello World!" );
List<String> list1 = new ArrayList<String>();
list1.add("1");
list1.add("2");
list1.add("3");
List<String> list2 = new ArrayList<String>();
list2.add("1");
list2.add("2");
b:for(String str2:list2){
a:for(String str1: list1){
if(str1.equals(str2)){
break b;
}
}
}
char i ="fds".charAt(1);
System.out.println((int) i);
System.out.println(NumberUtils.isDigits("123"));
String abc = null;
System.out.println("fdsfsfs"+abc);
}
}