从URL获取JSON对象

时间:2012-01-05 01:39:35

标签: java json

我正在使用公共Tumblr API编写应用程序,只是为了好玩。我已经设置了我的oauth密钥,并且我有访问我博客信息的URL。我想知道如何从该页面获取JSON编码数据并将其转换为字符串以便使用。

要明确的是,如果我想要博客的标题,我可以向此网址发送请求并选择标题数据。

谢谢!

1 个答案:

答案 0 :(得分:2)

我使用Restlet从休息服务中检索JSON数据。以下是样本

Representation entity = new ClientResource("your url").get();
JsonRepresentation jsonRepresentation = new JsonRepresentation(entity.getText());
JSONObject jsonObject = jsonRepresentation.getJsonObject();