0
서버에 이미지와 텍스트가 포함 된 html 파일이 있습니다. HTML 파일을 이미지와 함께 다운로드하고 싶습니다. html 파일을 다운로드하는 코드가 있습니다. 그러나 HTML 파일과 함께 이미지를 어떻게 다운로드 할 수 있습니까?안드로이드에서 전체 웹 페이지 또는 HTML 파일을 저장하는 방법은 무엇입니까?
public void myDownload(String myURL, String title, String year, String branch, String section) {
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(myURL));
request.setTitle("File Download");
request.setDescription("Downloading....");
//request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI);
request.allowScanningByMediaScanner();
//request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_HIDDEN);
String nameOfFile = URLUtil.guessFileName(myURL, null, MimeTypeMap.getFileExtensionFromUrl(myURL));
//request.setDestinationInExternalPublicDir(Environment.getExternalStorageDirectory().getPath() + "/KiiTTimeTableData/" + year + "/" + branch + "/" + section + "/", nameOfFile);
request.setDestinationInExternalPublicDir("/KiiTTimeTableData/" + year + "/" + branch + "/" + section + "/", nameOfFile);
DownloadManager manager = (DownloadManager) getActivity().getSystemService(Context.DOWNLOAD_SERVICE);
manager.enqueue(request);
}
:
여기에 코드 예제를 생각해 보자. 그 또는 downloadmanager 대신 이런 종류의 것을 의미 라이브러리를 사용하십시오. – alzee