?? test.java
字號:
/**
* A test client
*/
public class Test {
public static void main(String[] args) {
// You should change the path of "test.txt" in your local machine
String fileName = "d:\\javaproject\\TemplateMethod\\src\\test.txt";
String url = "http://www.the9.com/main.htm";
AbstractRead fileRead = new ReadFile();
AbstractRead htmlRead = new ReadHtml();
fileRead.setResource(fileName);
htmlRead.setResource(url);
System.out.println("----- Read from a file -----");
fileRead.getContent();
System.out.println("----- Read from a url -----");
htmlRead.getContent();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -