java编程jsoup

f8rj6qna  于 2021-06-30  发布在  Java
关注(0)|答案(1)|浏览(301)

这个问题在这里已经有答案了

无法对非静态方法进行静态引用(7个答案)
5年前关门了。
我正在使用以下代码将某些网页的内容保存在一个方法中,但我一直有一个错误,即:(“cannot make a static reference to the non-static method convertor(),from the type converturltostring”)
请考虑一下,我只是使用这个类来发现我的主项目的问题,我在没有“publicstaticvoidmain(stringargs[])的另一个类中有类似的方法(convertor())”

package testing;
import java.io.IOException;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
public class ConvertUrlToString {
    public static void main(String args[]) throws IOException{
        convertor(); 
    }
    public void convertor() throws IOException    
    {
         Document doc =                        Jsoup.connect("http://www.willhaben.at/iad/immobilien/mietwohnungen/wien/wien-1060-        mariahilf/").get();
         String text = doc.body().text();
         Document doc1 = Jsoup.connect("http://www.google.at/").get();
         String text1 = doc1.body().text();    
         Document doc2 = Jsoup.connect("http://www.yahoo.com/").get();
         String text2 = doc2.body().text();
         System.out.println(text);
         System.out.println(text1);
         System.out.println(text2);
    }  
}
iklwldmw

iklwldmw1#

只需在yout convertor方法中添加一个static关键字。因为您试图在静态上下文(main方法)中调用它,所以这个方法必须是静态的。如果不想使其成为静态的,则需要创建converturltostring的示例并调用convertor方法。

public static void main( String[] args ) {
    try {
        convertor();
    catch ( IOException exc ) {
    }
}

public static void convertor() throws IOException {
    ...
}

public static void main( String[] args ) {
    try {
        new ConvertUrlToString().convertor();
    catch ( IOException exc ) {
    }
}

public void convertor() throws IOException {
    ...
}

相关问题