Skip to content

Commit 8c463e7

Browse files
committed
dom解析xml
1 parent 57aa012 commit 8c463e7

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package com.meipian.redis.test.list;
2+
3+
import org.junit.Test;
4+
5+
import java.util.ArrayList;
6+
7+
public class ArrayListTest {
8+
9+
@Test
10+
public void test(){
11+
ArrayList arrayList = new ArrayList();
12+
for(int i=0;i<12;i++){
13+
arrayList.add(i);
14+
}
15+
System.out.println("");
16+
}
17+
}

0 commit comments

Comments
 (0)