Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I execute by new CreateNewThread().execute();

class CreateNewThread extends AsyncTask<String, String, String> {

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        pDialog = new ProgressDialog(CreateThread.this);
        pDialog.setMessage("Creating Thread..");
        pDialog.setIndeterminate(false);
        pDialog.setCancelable(true);
        pDialog.show();
    }

    protected String doInBackground(String... args) {

        tittel = inputTitle.getText().toString();
        tekst = inputText.getText().toString();

        if (!tittel.equals("") && !tekst.equals("")) {
            try {
                HttpClient httpclient = new DefaultHttpClient();
                HttpPost httppost = new HttpPost(
                        "http://.../createthread?title="
                                + tittel + "&text=" + tekst);
                HttpResponse response = httpclient.execute(httppost);
                HttpEntity entity = response.getEntity();
                InputStream is = entity.getContent();
                BufferedReader in = new BufferedReader(new InputStreamReader(
                        is,"iso-8859-1"));
                System.out.println(tittel);
                System.out.println(tekst);
                System.out.println(in);
                String line;

                while ((line = in.readLine()) != null) {
                    JSONObject jo = new JSONObject(line);
                    System.out.println(jo.getString("svar"));
                }
            } catch (Exception e) {
                System.out.println("catchgreiene" + e);
            }

        } 
        else {
            System.out.println();
        }
        return null;
    }

    protected void onPostExecute(String file_url) {
        pDialog.dismiss();
    }

}

I'm trying just to run an url. The php-file runs in browser.. This is 2.2 Froyo. What am I missing here?

I've tried other methods, but this works for a friend. So it should work.

share|improve this question
1  
I've added the internet permission btw – user1845474 Nov 22 '12 at 15:30
What data you want to get? Be clear...You are unable to get 'svar' key's value? If so paste your detailed android code and php code too.. – Appu Nov 22 '12 at 17:21
Apache stopped my access to the php-file.. just made a new one, so it works now. Thanks for the help guys – user1845474 Nov 22 '12 at 21:16

1 Answer

I don't know if it's the problem, but you should NEVER do a System.out.println in android. Use Log.w("tag","key") instead!

share|improve this answer
uff, thanks for downvoting – qd0r Nov 22 '12 at 15:49
I know, but I'm so used to it, it's only to see the strings anyway – user1845474 Nov 22 '12 at 15:52
Log.v("my tittel value: ",tittel); – qd0r Nov 22 '12 at 15:59
System.out.println() can be used in android too.Even it is shown in logcat.. It depends on the programmer the way he likes to debug.. – Appu Nov 22 '12 at 17:15

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.