android 网页保存,在android中保存完整的网页到sdcard

嗨开发人员我正在开发一个基于web的应用程序在android中。我想下载一个网页到SD卡,使加载的网页更快。所以我用下面的代码在android中保存完整的网页到sdcard

try {

//set the download URL, a url that points to a file on the internet

//this is the file to be downloaded

URL url = new URL("http://venusdigitalarcade.com/index.html");

//create the new connection

HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();

//set up some things on the connection

urlConnection.setRequestMethod("GET");

urlConnection.setDoOutput(true);

//and connect!

urlConnection.connect();

//set the path where we want to save the file

//in this case, going to save it on the root directory of the

//sd card.

File SDCardRoot = Environment.getExternalStorageDirectory();

//create a new file, specifying the path, and the filename

//which we want to save the file as.

File file = new File(SDCardRoot,"venus.html");

//this will be used to write the downloaded data into the file we created

FileOutputStream fileOutput = new FileOutputStream(file);

//this will be used in reading the data from the internet

InputStream inputStream = urlConnection.getInputStream();

//this is the total size of the file

int totalSize = urlConnection.getContentLength();

//variable to store total downloaded bytes

int downloadedSize = 0;

//create a buffer...

byte[] buffer = new byte[1024];

int bufferLength = 0; //used to store a temporary size of the buffer

//now, read through the input buffer and write the contents to the file

while ((bufferLength = inputStream.read(buffer)) > 0) {

//add the data in the buffer to the file in the file output stream (the file on the sd card

fileOutput.write(buffer, 0, bufferLength);

//add up the size so we know how much is downloaded

downloadedSize += bufferLength;

//this is where you would do something to report the prgress, like this maybe

// updateProgress(downloadedSize, totalSize);

}

//close the output stream when done

fileOutput.close();

//catch some possible errors...

} catch (MalformedURLException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

这个代码仅保存HTML著作没有设计部分和css文件和内容,如图片和视频

我如何可以下载完整的网页与下载的HTML文件设计和javascrpts和CSS?

+0

请在这里评论,如果你不明白我的问题 –

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值