Android:通过意图接收HTML页面

时间:2013-07-18 14:06:37

标签: android html android-intent

我已通过HTML页面中的选项为我的应用启用了共享。现在,我试图在我的SD卡中存储触发的HTML页面。为此,我试图使用意图内容。

我使用了下面的图像,它就像魅力一样......

    Uri imageUri = (Uri) shareintent.getParcelableExtra(Intent.EXTRA_STREAM);
            Uri uri = (Uri) extras.getParcelable(Intent.EXTRA_STREAM);
            ContentResolver cr = getContentResolver();
            InputStream is = cr.openInputStream(uri);
            BitmapFactory.Options options = new BitmapFactory.Options();
            options.inJustDecodeBounds = false;
            Bitmap imageBitmap = BitmapFactory.decodeStream(is ,null, options);

请你给我一个如何在我的SD卡中保存HTML页面的提示?

1 个答案:

答案 0 :(得分:0)

在一个WebView(一个允许在你的应用程序中打开网页的布局......等)和使用HttpClient.execute()或HttpClient.get()应该为你做的。