- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
你好。我有一行 json 数据@我的网络服务。所有 Json 数据都以这种格式提供,只有 URL 和链接。据我所知,它是一个 JsonObject。简短地说我请求,结果总是以 url 结尾。所以输出是:
{"Url":"www.google.com"}
这就是我所做的
JSONArray json = jParser.getJSONFromUrl(url);
try {
ListBasedList.clear();
//for each loop til JSON data
for(int i = 0; i < json.length(); i++){
JSONObject c = json.getJSONObject(i);
String json_url = c.getString(TAG_Url);
if(json_url.equals(0) && json_url.equals(""))
{
LinearLayout lin_footer = (LinearLayout) findViewById(R.id.footer_layoutMain);
lin_footer.setVisibility(View.GONE);
}
HashMap<String, String> map = new HashMap<String, String>();
map.put(TAG_Url, json_url);
ListBasedList.add(map);
}
} catch (JSONException e) {
e.printStackTrace();
Log.e("JSON Parser fejl", "fejl da man prøve og hente data fra server " + e.toString());
}
return null;
}
此处发生错误
logcat 告诉我这个:
JSONObject无法转成jsonarray
那么我怎样才能得到链接而不是错误呢?
更新 #1 --> Logcat 完整错误
10-01 13:34:45.685: E/JSON Parser(24256): Error parsing data org.json.JSONException: Value {"url":"www.google.com"} of type org.json.JSONObject cannot be converted to JSONArray
更新 #2 --> JsonParser 类
public class JSONParser {
static InputStream is = null;
static String json = "";
JSONArray jsonarr=null;
// konstruktor
public JSONParser() {
}
public JSONArray getJSONFromUrl(String url) {
JSONArray jsonarr=null;
// HTTP request
try {
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
json = sb.toString();
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
// json array paser til string
try {
jsonarr = new JSONArray(json);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}
// retunerer json object tilbage
return jsonarr;
}
}
最佳答案
您正在从响应中获取单个 Json 对象。因为 {"Url":"www.google.com"}
是一个 JSONObject。
所以行
JSONArray json = jParser.getJSONFromUrl(url);
应该是
JSONObject json = jParser.getJSONFromUrl(url);
在读取数据时你只需要
String json_url = json.getString(TAG_Url);
而不是使用 for 循环。
查看更新后的类
public class JSONParser {
static InputStream is = null;
static String json = "";
JSONObject jsonObject = null; // Updated here
// konstruktor
public JSONParser() {
}
public JSONObject getJSONFromUrl(String url) {
jsonObject = null; // Updated here
// HTTP request
try {
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
json = sb.toString();
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
// json array paser til string
try {
jsonObject = new JSONObject(json); // Updated here
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}
// retunerer json object tilbage
return jsonObject; // Updated here
}
}
这将适用于您当前的 json。请参阅 //Updated here
以了解我更新的内容。
关于android - 麻烦 JsonObject Parsing cannot converted to jsonarray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19114987/
我已经习惯了 hibernate ,但我时不时地跌跌撞撞,这是另一个。 我正在努力实现以下目标: @OneToMany @JoinTable(name = "inter_spec",
我的 CakePHP 网站几个月来一直运行良好,直到我今天尝试访问它时,出现以下错误: Warning: include(Cake/bootstrap.php): failed to open str
此代码对其他人有效吗?很长一段时间以来,添加事件监听器都不起作用。 Page Title window.onload = init(); function init
我试图在文本中只留下 a-zA-Z0-9._ : $new_pgname=preg_replace('|(^[a-zA-Z0-9_\.])|s','',$new_pgname); 但是你猜怎么着……对
html: [...][...] js [...]alert(document.getElementById("test").name);[...] 为什么我得到的是“undefined”而不是“te
我正在尝试创建一个实现 main 方法的驱动程序类。它必须创建并测试一个对象来演示所有程序功能。 我认为我已经创建了正确的驱动程序类,但我运行的测试证明我的代码中存在错误,这就是我到目前为止所拥有的。
我正在制作一款扑克游戏,但遇到了一个问题,几乎所有事情都可以按照交易按钮的 actionListener 进行。它应该删除交易按钮并添加一个新的 JTextArea (此文本只是一个占位符)。在那之前
我有一些编程经验,但我对 python 很陌生,我正在尝试弄清楚如何使用和导入 .py 文件中的类而不是 main 。我目前正在使用 netbeans,运行 CPython 3.2.1。 根据我现在的
好吧,我不知道发生了什么。我对 iOS 还比较陌生,所以我的调试技能还达不到他们需要的水平。我有一个文本字段工作得很好,直到我在我的应用程序中做了一些更改,这些更改与文本字段没有任何关系(至少我认为它
你好社区我有以下问题。 我的 list 文件如下所示。
我正在使用Drupal2Wordpress plugin将我的内容从 Drupal 传输到 WP,但我在尝试开始该过程时收到此错误:无法连接到 Drupal 数据库。 这是MySQL的日志: 1504
我有以下代码。它编译得很好,但它告诉我字符串是“E#^$$@$$$$$$$”。有什么想法吗? ifstream InFile(Filename); if (!InFile) return fa
我正在为类(class)的期末考试做准备,并且正在尝试重做作业问题。这是我第一次获得零学分的其中之一。 此练习的目标是创建一个 URL,该 URL 将指向包含以下 HTML 的页面,而不是显示预期的协
我开始研究套接字,但遇到了麻烦!我做错了什么? 服务器: /* server.c */ /* ############### INCLUDES ############### */ #include
我正在尝试制作一个逐行读取文件然后将读取的行放入链表的程序,我的问题是将字符串添加到列表中。看代码,在else测试中你可以看到我的问题。 #include #include struct list_e
我是 WordPress 新手,正在为 friend 编辑网站。我正在尝试向站点添加 RSS 提要,因此我编辑了 header.php 文件(这就是它的去向)。 我还编辑了 CSS,然后使用 File
我将向您展示 2 个场景(注意 d=damping factor=0.5) 第一种情况:假设有 4 个节点 A, B, C, D : B、C、D 链接到 A。 PageRank 是:PR(A)=0.5
我无法理解 mem_fun_ref。我必须承认,我通常将仿函数用于此类事情,因为它们可以内联以提高速度和利润。但是,这段代码不会成为瓶颈,所以我想尝试一下。 这是我想做的一个例子。我知道还有其他方法可
尝试使用 AudioClip 编译 applet 时出现预期标识符错误。我计划将其添加到 JFrame,并希望让 AudioClip 循环播放。 import java.applet.*; impor
我正在尝试开始使用 node.js,但我绝不是高级程序员。除了检查我的 ip,我从未使用过 cmd。 我的问题是我不知道将文件保存在哪里,以及如何使用 node.js 从 cmd 运行它们。我发现的教
我是一名优秀的程序员,十分优秀!