gpt4 book ai didi

java - readline() 为 null 的所有可能原因

转载 作者:行者123 更新时间:2023-12-02 06:07:01 29 4
gpt4 key购买 nike

代码片段:

    HttpURLConnection url = new HttpURLConnection(new URL("myurl"));
InputStream connInputStream = null;
try
{
connInputStream = conn.getInputStream();
BufferedReader in = new BufferedReader(new InputStreamReader(connInputStream));
boolean matchFound = false;
String strLine = in.readLine();
}
...

在这段代码中,我得到 strLine = null,这意味着 in.readLine 为 null。in.readline 可能为空的可能原因是什么。该代码片段不会抛出任何空指针异常。

这种情况会因为将 url 源读取到流中的时间滞后而出现吗?

最佳答案

原因只有一个:you've reached the end of the underlying stream 。流的结尾是什么取决于底层流的实现。

关于java - readline() 为 null 的所有可能原因,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22189989/

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