4

嗨,我正在测试 Web url 的加密和解密,并试图开发 Web 浏览器的意图。

String decrypted = DecodeAES.decrypt(AESkey, encrypted);
decryptedValue.setText(decrypted);

在这里我想检索“decryptedValue”并放置在 Uri.parse 实际上这里“decryptedValue”包含一些要在 webbrowser 中打开的网站。

Intent browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.google.com"));
startActivity(browserIntent);

请告诉我如何使用 Uri.parse 以及使用什么。

提前致谢。

4

1 回答 1

3

改变 -

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("www.google.com"));

至 -

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
于 2013-09-13T20:06:41.567 回答