仪表盘
版本库
文件存储
活动
搜索
登录
dongjh
/
train_exam
分支自
train_exam
概况
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
批次新增学员查询条件,新增题目导入接口
“djh”
2024-11-11
8458e64aab474c0fc2f49ae4ff22fb11ce5cf6e2
[~dongjh/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);
}
}