###前提・実現したいこと
Javaでjsonを文字列をPOSTして結果を表示する。
受け取り側ではjsonの処理をしてレスポンスを返したいです。
###発生している問題・エラーメッセージ
送信して処理結果のレスポンスを受け取ることは出来ましたが、json文字列を送れていない(または、php側でjsonが受け取れていない)ようです。
Content-Type
をapplication/json
とすると、リクエストのbodyに文字列が書き込まれるのではないでしょうか?
受け側のphpではfile_get_contents('php://input')
の中身が空になっています。
また、curl
でPOSTした場合は、リクエストのbodyの文字列が取得できます。
###該当のソースコード
送信側
java
1/** 2 * @param strPostUrl "http://{hostname}/" 3 * @param formParam "{\"account\":\"piyo\", \"pass\":\"hoge\"}" 4 */ 5public String callPost(String strPostUrl, String formParam) { 6 7 HttpURLConnection con = null; 8 StringBuffer result = new StringBuffer(); 9 10 try { 11 12 URL url = new URL(strPostUrl); 13 14 con = (HttpURLConnection) url.openConnection(); 15 16 con.setDoOutput(true); 17 con.setRequestMethod("POST"); 18 con.setRequestProperty("Accept-Language", "jp"); 19 con.setRequestProperty("Content-Type", "application/json; charset=utf-8"); 20 OutputStreamWriter out = new OutputStreamWriter(con.getOutputStream()); 21 out.write(formParam); 22 out.close(); 23 con.connect(); 24 25 // HTTPレスポンスコード 26 final int status = con.getResponseCode(); 27 if (status == HttpURLConnection.HTTP_OK) { 28 // 通信に成功した 29 // テキストを取得する 30 final InputStream in = con.getInputStream(); 31 String encoding = con.getContentEncoding(); 32 if (null == encoding) { 33 encoding = "UTF-8"; 34 } 35 final InputStreamReader inReader = new InputStreamReader(in, encoding); 36 final BufferedReader bufReader = new BufferedReader(inReader); 37 String line = null; 38 // 1行ずつテキストを読み込む 39 while ((line = bufReader.readLine()) != null) { 40 result.append(line); 41 } 42 bufReader.close(); 43 inReader.close(); 44 in.close(); 45 } else { 46 System.out.println(status); 47 } 48 49 } catch (Exception e1) { 50 e1.printStackTrace(); 51 } finally { 52 if (con != null) { 53 // コネクションを切断 54 con.disconnect(); 55 } 56 } 57 // 実行結果 58 System.out.println("result=" + result.toString()); 59 60 return result.toString(); 61 62}
受け取り側
php
1<?php 2// リクエストのbody部分を読む 3$json_string = file_get_contents('php://input'); 4 5// 文字列の確認 6echo $json_string; // {"account":"piyo", "pass":"hoge"} 7 8// jsonへのパース 9$obj = json_decode($json_string); 10// 要素の表示 11print $obj->{'account'}; // hoge
結果
console
1result=
result={"account":"piyo", "pass":"hoge"}piyo
と表示してほしい。
###試したこと
- curlから受け側の確認
sh
1$ curl -H "Content-type: application/json" -X POST -d "{\"account\":\"piyo\",\"pass\":\"hoge\"}" http://{hostname}/
結果
送信したjsonに対して、想定の結果を返している。
console
1{"account":"piyo","pass":"hoge"}piyo
- レスポンスの確認
php
1<?php 2$account = "piyo"; 3$pass = "hoge"; 4 5 6$json_array = array( 7 'account' => $account, 8 'pass' => $pass, 9); 10 11header("Content-Type: text/javascript; charset=utf-8"); 12# JSON 形式にエンコードしてechoでPOST送信 13echo json_encode($json_array); 14
結果
jsonの文字列が返ってくる。
console
1result={"account":"piyo","pass":"hoge"}
- OutputStreamWriterのclose()をflush()に変更
結果に変化はなかった。
- OkHttpを使って送信する。
http://square.github.io/okhttp/
サンプルソースのURLとjsonを変更して実行したが、結果は空だった。
###補足情報(言語/FW/ツール等のバージョンなど)
java 8
php 7.1
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/09/20 01:33