-3
A
回答
1
是當然的,你只需要像做
public static void main(String[] args) {
URL url;
try {
// get URL content
url = new URL("http://www.mkyong.com");
URLConnection conn = url.openConnection();
// open the stream and put it into BufferedReader
BufferedReader br = new BufferedReader(
new InputStreamReader(conn.getInputStream()));
String inputLine;
//save to this filename
String fileName = "https://stackoverflow.com/users/mkyong/test.html";
File file = new File(fileName);
if (!file.exists()) {
file.createNewFile();
}
//use FileWriter to write file
FileWriter fw = new FileWriter(file.getAbsoluteFile());
BufferedWriter bw = new BufferedWriter(fw);
while ((inputLine = br.readLine()) != null) {
bw.write(inputLine);
}
bw.close();
br.close();
System.out.println("Done");
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
出處:mkyong
1
相關問題
- 1. 如何從android中的html鏈接獲取頁面的html源代碼?
- 2. 從源代碼獲取特定鏈接Python
- 3. 如何從終端獲取網頁源代碼的特定行?
- 4. 如何從asp.net獲取當前頁面源代碼頁面
- 5. 從html源代碼獲取鏈接
- 6. 獲取頁面源代碼
- 7. 獲取頁面源代碼
- 8. 如何獲取特定網站中的所有頁面鏈接?
- 9. 從C#中的HTML代碼獲取特定單詞的鏈接#
- 10. 如何從java中的https地址獲取html頁面的源代碼
- 11. 如何從此頁面獲取鏈接?
- 12. 試圖讓這個特定頁面的源代碼中的Java
- 13. Java使用JSOUP從HTML源代碼獲取RSS鏈接
- 14. 如何從c#獲取原始頁面源代碼(不是源代碼)#
- 15. 如何從Java獲取網頁的源代碼
- 16. 如何從HTML頁面源獲取特定的html div標籤?
- 17. php:如何從給定頁面的特定div獲取所有超鏈接?
- 18. 如何使用php代碼獲取html頁面的頁面源代碼?
- 19. 如何從Site.css中獲取特定頁面的特定樣式?
- 20. 首頁Feed中獲取特定鏈接
- 21. 使用Java獲取以下頁面的源代碼使用Java
- 22. 獲取頁面源代碼的問題
- 23. 我如何從WebView獲取頁面源代碼?
- 24. 如何從頁面獲取HTML源代碼?
- 25. 如何從IE窗口獲取頁面源代碼?
- 26. 如何獲取加載到IWebBrowser2中的頁面的源代碼?
- 27. 如何從C#中的網頁源代碼獲取圖像源代碼#
- 28. 獲取頁面源代碼擴展
- 29. 使用Java獲取網頁源代碼
- 30. 從另一個頁面鏈接到iFrame中的特定頁面