Java从网站获取源代码

时间:2015-05-12 19:30:43

标签: java html export

此代码位于类中,它从网站获取源代码。我想获取代码并将其打印在另一个类的jTextArea中,但我不知道我该怎么做。如何在另一个类中导出此源代码?

public static void Connect() throws Exception{

    URL url = new URL("https://www.google.com/");
    URLConnection spoof = url.openConnection();


    spoof.setRequestProperty( "User-Agent", "Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0; H010818)" );
    BufferedReader in = new BufferedReader(new InputStreamReader(spoof.getInputStream()));
    String strLine = "";

    while ((strLine = in.readLine()) != null){

        System.out.println(strLine);
    }

}

在另一个班级我有一个带有此代码的按钮:

    try{
        Connect();
    } catch(Exception e) {

    }

1 个答案:

答案 0 :(得分:1)

在第二节课中,你会打电话给

try{
    ClassA.Connect();
} catch(Exception e) {

}

其中ClassA是定义了public static void Connect()的类的名称。请注意,按照惯例,方法名称应以小写字母开头,因此它应该是public static void connect()。