?? gethtmltext.java
字號(hào):
import java.net.*;
import java.io.*;
import java.util.*;
public class GetHtmlText{
public static void main(String[] args) throws Exception {
URL url = new URL(args[0]);
InputStream input = url.openStream();
BufferedReader br = new BufferedReader(new InputStreamReader(input));
String s;
long sTime=System.currentTimeMillis();
while((s = br.readLine())!= null) {
System.out.println(s);
}
long eTime=System.currentTimeMillis();
System.out.println("用時(shí):"+(eTime-sTime)+" ms");
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -