0

我必须构建我已经构建的一些结构的数组:

类(Item)的构建方式如下:(如下图所示)

现在我的问题是我试图解析一些我从另一个地方(在这种情况下是一个列表)到 int 的字符串数字。

但我得到这个错误:

Integer 类型中的方法 parseInt(String) 不适用于参数 (R.string)

这是一段代码:(它说错误在(“Integer.parseInt”)中:

markers.add(new item(Integer.parseInt(items.get(0).get(i)), items.get(1).get(i), items.get(2).get(i), items.get(3).get(i), Integer.parseInt(items.get(4).get(i)), Integer.parseInt(items.get(5).get(i))));

它只是很长,但并不复杂。

非常感谢!

编辑:

项目列表只是列表的列表:

List<List<string>> items;

类的结构是:

private int id;
private string title;
private string desc;
private string pub;
private int p;
private int n;

编码:

public List<List<String>> Download()
    {
        String data = null;
        //String res = "";
        try {
            client = new DefaultHttpClient();// Reference to the Internet
            httppost = new HttpPost(URL);
            HttpResponse response = client.execute(httppost);
            HttpEntity entity = response.getEntity();// get the content of the
                                                        // message
            InputStream webs = entity.getContent();

            BufferedReader in = new BufferedReader(new InputStreamReader(webs,"iso-8859-1"));

            StringBuffer sb = new StringBuffer("");

            String l = " ";
            // String nl=System.getProperty("line.separator");
            while ((l = in.readLine()) != null) {
                sb.append(l + "\n");
            }
            data = sb.toString();
            webs.close();

            List<List<String>> all= new ArrayList<List<String>>();
            all.add(new ArrayList<String>());
            all.add(new ArrayList<String>());
            all.add(new ArrayList<String>());
            all.add(new ArrayList<String>());
            all.add(new ArrayList<String>());
            all.add(new ArrayList<String>());
            all.add(new ArrayList<String>());

            try {

                JSONObject json = new JSONObject(data);
                JSONArray jArray = json.getJSONArray("item");
                for (int i = 0; i < jArray.length(); i++) {

                    JSONObject json_data = jArray.getJSONObject(i);
                    //res += json_data.getString("title")+"\n";
                    all.get(0).add(json_data.getString("id"));
                }
                for (int i = 0; i < jArray.length(); i++) {

                    JSONObject json_data = jArray.getJSONObject(i);
                    //res += json_data.getString("title")+"\n";
                    all.get(0).add(json_data.getString("title"));

                }
                for (int i = 0; i < jArray.length(); i++) {

                    JSONObject json_data = jArray.getJSONObject(i);
                    //res += json_data.getString("title")+"\n";
                    all.get(0).add(json_data.getString("desc"));

                }
                for (int i = 0; i < jArray.length(); i++) {

                    JSONObject json_data = jArray.getJSONObject(i);
                    //res += json_data.getString("title")+"\n";
                    all.get(0).add(json_data.getString("pub"));

                }
                for (int i = 0; i < jArray.length(); i++) {

                    JSONObject json_data = jArray.getJSONObject(i);
                    //res += json_data.getString("title")+"\n";
                    all.get(0).add(json_data.getString("p"));

                }
                for (int i = 0; i < jArray.length(); i++) {

                    JSONObject json_data = jArray.getJSONObject(i);
                    //res += json_data.getString("title")+"\n";
                    all.get(0).add(json_data.getString("n"));

                }

                return all;

            } catch (JSONException e) {

            }

            //return news;
        } catch (Exception e) {
            int x=3;
            // TODO: handle exception
        }

        return null;
    }
4

3 回答 3

1

您使用的类型 ,string显然不是java.lang.String,因此您不能将其作为参数提供给Integer.parseInt(java.lang.String).

于 2013-08-10T11:02:50.610 回答
1

更改您的代码,使用 String insted 字符串。

 private int id;

private String title;

private String desc;

 private String pub;

private int p;

private int n;

也改变名单

List<List<String>> items;
于 2013-08-10T11:04:49.787 回答
1

在不更改代码的情况下执行相同操作的其他方法是,您应该在 parseInt() 中调用 getString(),以便 getString() 将返回 java.lang.String,如下所示:

   getString(R.string.value);

这样做将节省您更换的大量精力string with String.

如果您打开 R 类,您将看到它仅包含引用您项目的已编译资源的数字。

选择是你的:)

干杯

于 2013-08-10T11:12:50.267 回答