gpt4 book ai didi

java - String.split() 生成 NullPointerException

转载 作者:行者123 更新时间:2023-12-02 08:12:21 25 4
gpt4 key购买 nike

String.split() 生成 NullPointerException。

BufferedReader brs = new BufferedReader(new InputStreamReader(System.in));
String s1;
String s2[];
s1 = brs.readLine();
s2 = s1.split(" ");

最佳答案

s1 可能为 null

s1 = brs.readLine();
if(s1!=null)
s2 = s1.split(" ");

关于java - String.split() 生成 NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8758382/

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