Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Someone can help me? please...

json.txt on raw folder can be displayed on tablelayout, but how can acces a json data from webservice and update it with php-mysql query? thanks

@Override
protected void onStart() {
    super.onStart();

    // Downloading the RSS feed needs to be done on a separate thread.
    Thread downloadThread = new Thread(new Runnable() {

        public void run() {
            Debug.startMethodTracing("JsonObject");
            try {
                loadData();
            } catch (Exception e) {
                Log.e("Content Retriever", e.getLocalizedMessage(), e);
            } finally {
                Debug.stopMethodTracing();
            }
        }
    }, "Reading Thread");

    downloadThread.start();
}

/**
 * Loads the sample JSON data into a table.
 * 
 * @throws JSONException
 * @throws IOException
 */
private void loadData() throws JSONException, IOException {
    populateTable(getContent());
}

/**
 * Reads the data into a {@link JSONObject}.
 * 
 * @return the data as a {@link JSONObject}
 * @throws IOException
 * @throws JSONException
 */
private JSONObject getContent() throws IOException, JSONException {
    BufferedReader bufferedReader = null;
    try {
        InputStream inStream = getResources().openRawResource(R.raw.json);

        BufferedInputStream bufferedStream = new BufferedInputStream(
                inStream);
        InputStreamReader reader = new InputStreamReader(bufferedStream);
        bufferedReader = new BufferedReader(reader);
        StringBuilder builder = new StringBuilder();
        String line = bufferedReader.readLine();
        while (line != null) {
            builder.append(line);
            line = bufferedReader.readLine();
        }

        return new JSONObject(builder.toString());
    } finally {
        if (bufferedReader != null) {
            bufferedReader.close();
        }
    }
}

/**
 * Populates the table in the main view with data.
 * 
 * @param data
 *            the read JSON data
 * @throws JSONException
 */
private void populateTable(JSONObject data) throws JSONException {
    JSONArray dataArray = data.getJSONObject("jadwal").getJSONArray(
            "matkuli");
    final TableLayout table = (TableLayout) findViewById(R.id.table);
    for (int i = 0; i < dataArray.length(); i++) {
        final View row = createRow(dataArray.getJSONObject(i));
        table.post(new Runnable() {

            public void run() {
                table.addView(row);
            }
        });
    }
}

/**
 * Creates a row for the table based on an observation.
 * 
 * @param item
 *            the JSON object containing the observation
 * @return the created row
 * @throws JSONException
 */
private View createRow(JSONObject item) throws JSONException {
    View row = getLayoutInflater().inflate(R.layout.row, null);
    ((TextView) row.findViewById(R.id.mat)).setText(item
            .getString("mk"));
    ((TextView) row.findViewById(R.id.hr)).setText(item
            .getString("hr"));
    ((TextView) row.findViewById(R.id.jm)).setText(item
            .getString("jm"));
    ((TextView) row.findViewById(R.id.rg)).setText(item
            .getString("rg"));
    return row;
}

and i have json.txt in res/raw folder.

{
"jadwal": {
    "matkuli": [
        {
            "mk": "Bahasa Indonesia",
            "hr": "Senin",
            "jm": 17.30-19.30,
            "rg": "3A"
        },

        {
            "mk": "Agama",
            "hr": "Selasa",
            "jm": 19.00-21.00,
            "rg": "3B"
        },

        {
            "mk": "SIM",
            "hr": "Rabu",
            "jm": 17.30-19.30,
            "rg": "4A"
        }
    ]
}

}

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.