❶ 錄音文件怎麼上傳到伺服器
可以用這個上傳
MultipartEntity,MultipartEntity
reqEntity
=
new
MultipartEntity();reqEntity.addPart(key,
new
FileBody(new
File(pathString)));
然後添加到HttpPost中。
在伺服器端接受用到另外一個東西,ServletFileUpload類。這些東西你網路下吧,都有的,給你個我知道的方向,不一定很好,但能實現。
❷ 錄音文件怎麼上傳到伺服器
兩種方式:
一個是錄完之後,把錄音文件ftp到伺服器上;
另外一個是伺服器上安裝錄音軟體,實時接收rtp語音。
這些要有設備的支持,比如 深簡捷RE100網路型SD卡雙保險電話錄音盒;另外,如果伺服器是雲伺服器,也要在伺服器上安裝相應的軟體。
❸ 錄音後,如何上傳錄音到伺服器,使用阿里雲對象存儲
可以用這個上傳
multipartentity,multipartentity
reqentity
=
new
multipartentity();reqentity.addpart(key,
new
filebody(new
file(pathstring)));然後添加到httppost中。在伺服器端接受用到另外一個東西,servletfileupload類。這些東西你網路下吧,都有的,給你個我知道的方向,不一定很好,但能實現。
❹ 如何實現手機錄音之後,將錄音的音頻文件上傳到伺服器上
你先得確定伺服器用什麼協議啊,HTTP,webservice,socket等等,如果用http一般兩種方式,一個是java自帶的urlhttpconnection,還有就是阿帕奇的httpclient。
代碼片段
// 使用POST方法提交數據,必須大寫
conn.setRequestMethod("POST");
// 需要輸出流
conn.setDoOutput(true);
// 需要輸入流
conn.setDoInput(true);
// 連接超時,10秒
conn.setConnectTimeout(10 * 1000);
// 讀取超時,10秒
conn.setReadTimeout(10 * 1000);
// 打開輸出流,寫入數據
out = conn.getOutputStream();
out.write(data);
out.flush();
// 以上
conn.connect();
if (conn.getResponseCode() == 200) {
in = conn.getInputStream();
// TODO 讀取數據
// 參考
int contentLength = conn.getContentLength();
ByteArrayOutputStream buf = new ByteArrayOutputStream(
contentLength > 0 ? contentLength : 1024);
byte[] buffer = new byte[1024];
while ((contentLength = in.read(buffer)) != -1) {
buf.write(buffer, 0, contentLength);
}
// 可選
buf.flush();
return buf.toByteArray();
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (out != null) {
try {
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (in != null) {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (conn != null) {
conn.disconnect();
}
// 錯誤的寫法
// try {
// in.close();
// out.close();
// } catch (IOException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// }
}
//盡量不要返回null 避免空指針異常
return new byte[0];
}
伺服器在getpost裡面接收可以轉為btye數組,然後在轉為文件
❺ 如何把錄音文件上傳到伺服器
可以用這個前散寬上傳
MultipartEntity,MultipartEntity
reqEntity
=
new
MultipartEntity();reqEntity.addPart(key,
new
FileBody(new
File(pathString)));然後添加到HttpPost中。掘州在伺服器端接受用到另外一個東西,ServletFileUpload類。這慧亮些東西你網路下吧,都有的,給你個我知道的方向,不一定很好,但能實現。