私はSOおよび他のサイトの多くの例から学ぼうとしましたが、私が一緒にハッキングした例が機能しない理由を理解することはできません。音声を認識し、それをPOST要求としてnode.jsサーバーに送信する小さな概念実証アプリ。私が動作することを確認した音声認識とサーバーは定期的なブラウザーアクセスから接続を受信するため、問題はアプリ自体にあると思われます小さなエラーはありませんか?エラーはスローされませんが、サーバーは接続を認識しません。アドバイスやヘルプ。
関連するJava(メインアクティビティと必要なAsyncTask):
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == 1001) {
if (resultCode == RESULT_OK) {
ArrayList<String> textMatchList = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
if (!textMatchList.isEmpty()) {
String topMatch = textMatchList.get(0);
PostTask pt = new PostTask();
pt.execute(topMatch);
}
}
}
}
private class PostTask extends AsyncTask<String, String, String> {
@Override
protected String doInBackground(String... data) {
try {
URL url = new URL("http://<ip address>:3000");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setReadTimeout(10000);
conn.setConnectTimeout(15000);
conn.setRequestMethod("POST");
conn.setDoOutput(true);
ContentValues values = new ContentValues();
values.put("data", data[0]);
OutputStream os = conn.getOutputStream();
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(os, "UTF-8"));
StringBuilder sb = new StringBuilder();
sb.append(URLEncoder.encode("data", "UTF-8"));
sb.append("=");
sb.append(URLEncoder.encode(data[0], "UTF-8"));
writer.write(sb.toString());
writer.flush();
writer.close();
os.close();
conn.connect();
return "Text sent: " + data[0];
} catch (IOException e) {
e.printStackTrace();
return "LOL NOPE";
}
}
}
サーバーJS:
var http = require('http');
const PORT=3000;
function handleRequest(request, response){
response.end('It Works!! Path Hit: ' + request.url);
console.log("Request got.");
}
var server = http.createServer(handleRequest);
server.listen(PORT, '0.0.0.0');
console.log("Listening on 3000...");
Apache CommonsからHttpクライアントを使用できます。例えば:
private class PostTask extends AsyncTask<String, String, String> {
@Override
protected String doInBackground(String... data) {
// Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://<ip address>:3000");
try {
//add data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("data", data[0]));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
//execute http post
HttpResponse response = httpclient.execute(httppost);
} catch (ClientProtocolException e) {
} catch (IOException e) {
}
}
}
[〜#〜] update [〜#〜]
Volley Android Networking Libraryを使用してデータを投稿できます。公式ドキュメントは here です。
私は個人的に Android Asynchronous Http Client をRESTクライアントプロジェクトに使用しています。
探索するのに適した他のツールは Retrofit です。