dashboard
repositories
filestore
activity
search
login
main
/
train_exam
教育考试系统
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
批次新增学员查询条件,新增题目导入接口
“djh”
2024-11-11
8458e64aab474c0fc2f49ae4ff22fb11ce5cf6e2
[train_exam.git]
/
exam-system
/
src
/
test
/
java
/
com
/
gkhy
/
exam
/
system
/
DemoTest.java
1
2
3
4
5
6
7
8
9
10
11
package com.gkhy.exam.system;
import cn.hutool.core.convert.Convert;
public class DemoTest {
public static void main(String[] args) {
String a="1,2,3";
Long[] ar= Convert.toLongArray(a);
System.out.println(ar);
}
}