gpt4 book ai didi

java - 即使返回也显示缺少返回语句的错误

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

怎么办呢?这里我想获取数据。结果在html页面中。我想在我的应用程序中向最终用户展示它。 html文档会自动呈现页面吗?或者显示屏上会显示相同的 html 代码吗?我用过这个来源 http://developer.android.com/intl/es/training/basics/network-ops/connecting.html#AsyncTask制作这个应用程序。修改是我想显示完整的页面。

public char readIt(InputStream stream)throws IOException, UnsupportedEncodingException {
Reader reader = null;
reader = new InputStreamReader(stream,"UTF-8");
int k = reader.read();
while (k != -1) {
return (char) reader.read();
k = reader.read();
}
}

最佳答案

如果你的代码没有进入 while 循环,它会返回什么?在任何情况下,返回语句都应该按照方法签名的指定存在。另外,您的 while 循环对我来说看起来有问题,因为您将第一个语句本身作为 return 语句。

该方法应具有以下结构:

public char readIt(InputStream stream)throws IOException, UnsupportedEncodingException {
Reader reader = null;
// do processing
return reader;
}

关于java - 即使返回也显示缺少返回语句的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32348347/

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