0

あなたの助けが必要です。URL リクエストを送信し、レスポンスを取得して JSON オブジェクトを作成したいと考えています。私の最初の試みは完全に間違っていました。今、チュートリアルを見つけて、新しい試みをしました。

私のアクティビティは次のようになります。

public class Patienten extends Activity {

//Beacon Elemente
private String UUID;
private String Major;
private String Minor;

private TextView output;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_patienten);
    output = (TextView) findViewById(R.id.output);
    UpdateBeaconInformation();

    Button cmdHit = (Button) findViewById(R.id.cmd_hit);
    cmdHit.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            new JSONTask().execute("//http://kusber-web.de/JsonTest.txt");
        }
    });


    setTitle(Surname + ", " + FirstName);
   // output.setText(output.getText().toString() + "Gefundener Patient:\n" + "Name: " + Surname + ", " + FirstName + "\nGeb.-Dat: " + Birthdate);
}

次に、新しい Java クラスを作成し、それを使用して asyncTask を作成しました。しかし、onPostExecute の textview 出力にアクセスして更新することはできません。

public class JSONTask extends AsyncTask<String, String, String> {
@Override
protected String doInBackground(String... urls) {
    HttpURLConnection connection = null;
    BufferedReader reader = null;
    try {

        //http://kusber-web.de/JsonTest.txt
        //http://nilsbenning.selfhost.me/PatientFinder.php?beacon_comID=5181f8a3-7354-46ac-b22d-952ec395ab06&beacon_major=12&beacon_minor=249
        URL url = new URL(urls[0]);
        connection = (HttpURLConnection) url.openConnection();
        connection.connect();

        InputStream stream = connection.getInputStream();

        reader = new BufferedReader(new InputStreamReader(stream));

        StringBuffer buffer = new StringBuffer();
        String line;
        while ((line = reader.readLine()) != null) {
            buffer.append(line);
        }

        return buffer.toString();

    } catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        if (connection != null) {
            connection.disconnect();
        }
        try {
            if (reader != null) {
                reader.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }

    }
    return null;
}

@Override
protected void onPostExecute(String result) {
    super.onPostExecute(result);
    output.setText(result);

}

私の間違いは何ですか? アクセスできないのはなぜですか?ここで解決策として見ましたが、機能しませんでした:

https://stackoverflow.com/a/12252717/5743912

あなたが今私を助けてくれることを願っています!:)

4

1 に答える 1

0

おそらくこれを修正する必要があります (先頭のスラッシュを削除します):

new JSONTask().execute("//http://kusber-web.de/JsonTest.txt");

JSONTaskでは、を使用してPatientenのメンバーを参照できますPatienten.this。したがって、onPostExecuteこれを変更する必要があります:

output.setText(result);

に:

Patienten.this.output.setText(result);
于 2016-01-05T16:26:02.750 に答える