java 在try-catch块中使用if语句不适用于JSoup

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 在try-catch块中使用if语句不适用于JSoup相关的知识,希望对你有一定的参考价值。

The code

if(link.select("img.a-dynamic-image.a-stretch-vertical").equals(null)){
makes no sense. select returns an Elements collection, which will never be .equals(null). If you want to check whether the select returns anything, use isEmpty or look at the size of the returned collection:

if(link.select("img.a-dynamic-image.a-stretch-vertical").isEmpty()){
    // It's empty

以上是关于java 在try-catch块中使用if语句不适用于JSoup的主要内容,如果未能解决你的问题,请参考以下文章

Java异常处理机制

Unity随手机

try-catch()-finally讲解

Java中的异常

如何检查线程代码是不是在 try-catch 块中运行

在 try-catch 块中继续当前迭代 | PHP