gpt4 book ai didi

java - 拆分返回 null

转载 作者:行者123 更新时间:2023-12-01 19:07:41 24 4
gpt4 key购买 nike

我正在用java制作游戏插件,但我遇到了分割功能的问题。

index = 0;
int leng = a.length;
while(index != leng){
arr = a[index].split("|"); //this is line 158
if(arr[1] == "blue"){
blues[index]= arr[1];
}else{
reds[index] = arr[1];
}
index++;
}

我在第 158 行收到 NullPointerException。
变量 arr 只是空数组。
我正在打印变量“a”以确保它不为空。
“a”看起来像这样:100 58 -9|red。
你能帮助我吗?谢谢

最佳答案

split 接收正则表达式,因此不要使用 arr = a[index].split("|");,而是执行 arr = a[index ].split("\\|");

关于java - 拆分返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9454277/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com