Reputation: 504
i want to use google speech api, i've found this https://github.com/gillesdemey/google-speech-v2/ where everything is explained well, but and im trying to rewrite it into java.
File filetosend = new File(path);
byte[] bytearray = Files.readAllBytes(filetosend);
URL url = new URL("https://www.google.com/speech-api/v2/recognize?output="+outputtype+"&lang="+lang+"&key="+key);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
//method
conn.setRequestMethod("POST");
//header
conn.setRequestProperty("Content-Type", "audio/x-flac; rate=44100");
now im lost... i guess i need to add the bytearray into the request. in the example its line
--data-binary @audio/good-morning-google.flac \
but httpurlconnection class has no method for attaching binary data.
Upvotes: 4
Views: 20400
Reputation: 15689
The code below works for me. I just used commons-io
to simplify, but you can replace that:
URL url = new URL("https://www.google.com/speech-api/v2/recognize?lang=en-US&output=json&key=" + key);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "audio/x-flac; rate=16000");
IOUtils.copy(new FileInputStream(flacAudioFile), conn.getOutputStream());
String res = IOUtils.toString(conn.getInputStream());
Upvotes: 3
Reputation: 101
Use multipart/form-data encoding for mixed POST content (binary and character data)
//set connection property
connection.setRequestProperty("Content-Type","multipart/form-data; boundary=" + <random-value>);
PrintWriter writer = null;
OutputStream output = connection.getOutputStream();
writer = new PrintWriter(new OutputStreamWriter(output, charset), true);
// Send binary file.
writer.append("--" + boundary).append("\r\n");
writer.append("Content-Disposition: form-data; name=\"binaryFile\"; filename=\"" + binaryFile.getName() + "\"").append("\r\n");
writer.append("Content-Type: " + URLConnection.guessContentTypeFromName(binaryFile.getName()).append("\r\n");
writer.append("Content-Transfer-Encoding: binary").append("\r\n");
writer.append("\r\n").flush();
Upvotes: 0
Reputation: 1196
But it has getOutputStream()
to which you can write your data. You may also want to call setDoOutput(true)
.
Upvotes: 4