在JSON任务之后,将忽略AndroidPlot指令

时间:2015-06-22 00:40:53

标签: android mysql json graph androidplot

(抱歉放了太多代码,但如果我没有,那会让事情变得更难解释) 无论如何,我做了一个从mysql数据库中获取数据的指令:

BCM96338 ADSL Router
Login: tmadmin
Password: tmadmin

这里的问题是以下代码被忽略或者是什么:

//asynctask
private class JsonReadTask extends AsyncTask<String, Void, String> {
    @Override
    protected String doInBackground(String... params) {
        ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();


        nameValuePairs.add(new BasicNameValuePair("fro", fr));
        nameValuePairs.add(new BasicNameValuePair("too",to));
        HttpClient httpclient = new DefaultHttpClient();
        HttpPost httppost = new HttpPost(params[0]);
        try {
            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            HttpResponse response = httpclient.execute(httppost);
            jsonResult = inputStreamToString(
                    response.getEntity().getContent()).toString();
        }

        catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

    private StringBuilder inputStreamToString(InputStream is) {
        String rLine = "";
        StringBuilder answer = new StringBuilder();
        BufferedReader rd = new BufferedReader(new InputStreamReader(is));

        try {
            while ((rLine = rd.readLine()) != null) {
                answer.append(rLine);
            }
        }

        catch (IOException e) {
            // e.printStackTrace();
            Toast.makeText(getApplicationContext(),
                    "Error..." + e.toString(), Toast.LENGTH_LONG).show();
        }
        return answer;
    }

    @Override
    protected void onPostExecute(String result) {

        try {
            JSONObject jsonResponse = new JSONObject(jsonResult);
            JSONArray jsonMainNode = jsonResponse.optJSONArray("energystatistic");

            for (int i = 0; i < jsonMainNode.length(); i++) {
                JSONObject jsonChildNode = jsonMainNode.getJSONObject(i);
                String kwh = jsonChildNode.optString("kwh");
                s1 = addElement(s1, Integer.parseInt(kwh));
            }

        } catch (JSONException e) {
            Toast.makeText(getApplicationContext(), "Error" + e.toString(), Toast.LENGTH_SHORT).show();
        }


        Toast.makeText(Plot.this, "Begin plot: " + String.valueOf(s1.length) + " Entries", Toast.LENGTH_SHORT).show();

        // Turn the above arrays into XYSeries':
        XYSeries series1 = new SimpleXYSeries(Arrays.asList(s1), SimpleXYSeries.ArrayFormat.Y_VALS_ONLY,"Series1");

        LineAndPointFormatter series1Format = new LineAndPointFormatter(Color.RED, Color.GREEN, Color.BLUE, null);
        // add a new series' to the xyplot:
        plot.addSeries(series1, series1Format);
        // reduce the number of range labels
        plot.setTicksPerRangeLabel(3);
        plot.getGraphWidget().setDomainLabelOrientation(-45);

        Toast.makeText(Plot.this, "Plotted", Toast.LENGTH_SHORT).show();

    }
}
// end async task

我运行了一个调试器来检查这些行,程序确实运行它们但图表似乎没有受到影响。图表保持空白,我无法理解为什么。我需要使用不同的方法运行吗?

如果我把它放在 onCreate 方法中,图表会显示一些变化,但这些点仍然根本没有被绘制。从数据库通过JSon(所有int数字)获取信息后,数组 s1 [] 确实有数据。

1 个答案:

答案 0 :(得分:0)

完成修改情节后,请尝试致电__get()