1

現在、サーバーと対話する必要があるアプリケーションを開発していますが、POST 経由でデータを受信する際に問題があります。私はDjangoを使用していますが、単純なビューから受け取っているのは次のとおりです:

<QueryDict: {u'c\r\nlogin': [u'woo']}>

{'login': 'woooow'}である必要があります。

ビューは次のとおりです。

def getDataByPost(request):
    print '\n\n\n'
    print request.POST    
    return HttpResponse('')

そして、sdkのsrcファイルで私がしたこと:

URL url = new URL("http://192.168.0.148:8000/data_by_post");
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setDoInput(true);
urlConnection.setDoOutput(true);
urlConnection.setChunkedStreamingMode(0);
String parametros = "login=woooow";

urlConnection.setRequestMethod("POST");
urlConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    urlConnection.setRequestProperty("charset","utf-8");
urlConnection.setRequestProperty("Content-Length", "" + Integer.toString(parametros.getBytes().length));

    OutputStream os = urlConnection.getOutputStream();
BufferedWriter writer = new BufferedWriter( new OutputStreamWriter(os, "UTF-8"));
writer.write(parametros);
writer.close();
os.close();

それが問題であるかどうかを確認するために Content-Length を変更したところ、login の thw 値に関する問題は修正されましたが、ハードコーディングによるものでした (これはクールではありません)。

ps .: QueryDict 以外はすべて正常に動作しています。

これを解決するにはどうすればよいですか? 私のJavaコードで何か間違ったことをエンコードしていますか? ありがとう!

4

1 に答える 1

4

パラメータに関するいくつかの変更を加えて問題を解決し、他のいくつかの変更も加えました。

としてparameters設定した:

String parameters = "parameter1=" + URLEncoder.encode("SOMETHING","UTF-8");

次に、AsyncTask の下で:

HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setDoInput(true);
conn.setRequestMethod("POST");
//not using the .setRequestProperty to the length, but this, solves the problem that i've mentioned
conn.setFixedLengthStreamingMode(params.getBytes().length);
conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");

PrintWriter out = new PrintWriter(conn.getOutputStream());
out.print(params);
out.close();

String response = "";
Scanner inStream = new Scanner(conn.getInputStream());

while (inStream.hasNextLine()) {
    response += (inStream.nextLine());
}

次に、これで、djangoサーバーから結果を取得しました:

<QueryDict: {u'parameter1': [u'SOMETHING']}>

それは私が欲しかったものです。

于 2013-08-25T02:45:33.337 に答える