这个怎么回事??求助

 

这个不会为什么会 报 红

鼠标悬浮 可以看到相关异常信息 我猜测 你应该没写cache 吧

The left-hand side of an assignment must be a variable

我看你这个不等号有点不顺眼,是不是中文的,【捂脸】

不等号的感叹号应该是中文的,切换下英文的

要么是感叹号是中文的,要么就是感叹号和等号之间有空格

bufferedReader.readLine()有io异常,

要么try catch如下:
try {
    while((line=in.readLine())!=null)
} catch (IOException e) {
    e.printStackTrace();
}
要么方法抛出异常,throws IOException