如何在android中将字符串json转换为url格式

时间:2017-01-26 09:01:47

标签: android json android-volley

我试图用这个tutorial创建一个滑块,但效果非常好。但是当我尝试从jSON获取图像url时,这个url不起作用。我想将字符串转换为url,但我的代码无效。

img1 = obj.getString("image_1");
URL myURL1 = new URL(img1);

3 个答案:

答案 0 :(得分:1)

添加Fatal error: Uncaught exception 'danog\MadelineProto\Exception' with message 'MadelineProto supports only 64 bit systems ATM' in C:\wamp64\www\telegramphp3\src\danog\MadelineProto\API.php on line 30 作为依赖项

app/gradle.app

现在你需要根据你的Json对象创建一个compile 'com.google.code.gson:gson:2.6.2'。所有Object.class名称都应与key

相同

例如:Object.class对象:

Json

{ "id": 1, "message": "This is example" "url": "http://www.jsoneditoronline.org/" } 对象:

Class

然后在public class ExampleObject { public long id; public String message; public String url; }

Activity.java

现在所有值都保存在Object类中。

答案 1 :(得分:0)

如果要加载在imageview中检索到的图像的网址,可以将字符串传递给图像处理库,例如Glide。这是一个关于如何设置和使用它的好教程:https://futurestud.io/tutorials/glide-getting-started

答案 2 :(得分:0)

Android SDK包含一个非常有用的Uri类。它公开了一个Builder,可用于构建属性URL(而不是您正在使用的字符串连接)。它还有Uri.parse()方法,可以从String创建实例。