dashboard
repositories
filestore
activity
search
login
main
/
multi_system
多体系后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
功能修改
heheng
2025-11-28
6d5fc7859473d30a2e4c1f20f748abae652342b8
[multi_system.git]
/
multi-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);
}
}