Android服务器django,使用JSON从Android应用程序向Django服务器发送/接收.wav文件

我正在尝试从我的Android应用程序发送一个.wav文件到Django服务器。主要的问题是在服务器端经常出现这样的错误:波。错误:文件不以RIFF id开头

从客户端的角度来看,这是我转换测试的方法_音频.wav文件到字节[]HashMap postParams = new HashMap<>();

InputStream inStream = testPronunciationView.getContext().getResources().openRawResource(R.raw.test_audio);

ByteArrayOutputStream out = new ByteArrayOutputStream();

BufferedInputStream in = new BufferedInputStream(inStream);

int read;

byte[] buff = new byte[1024];

while ((read = in.read(buff)) > 0) {

out.write(buff, 0, read);

}

out.flush();

byte[] fileAudioByte = out.toByteArray();

// two options to transform in a string

// 1st option

String decoded = new String(fileAudioByte, "UTF-8");

// 2nd option

String decoded = toJSON(fileAudioByte);

// decoded = either one of above

postDataParams.put("Audio", decoded)

// ....

// prepare a POST request here to send to the server

HttpURLConnection conn = (HttpURLConnection) url.openConnection();

conn.setReadTimeout(15000);

conn.setConnectTimeout(15000);

conn.setRequestMethod("POST");

conn.setDoInput(true);

conn.setDoOutput(true);

OutputStream os = conn.getOutputStream();

BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(os, "UTF-8"));

writer.write(getPostDataString(postDataParams));

writer.flush();

writer.close();

os.close();

编辑:创建JSON字符串的方法:

^{pr2}$

在服务器端我需要:audiofile_string = data['FileAudio']

audiofile_byte = list(bytearray(audiofile_string, 'utf8'))

temp_audiofile = tempfile.NamedTemporaryFile(suffix='.wav')

with open(temp_audiofile.name, 'wb') as output:

output.write(''.join(str(v) for v in audiofile_byte))

# The following line throws the error

f = wave.open(temp_audiofile.name, 'r') # wave.py library

所以我认为我在转换或是电话后做了些错事。有什么建议吗?谢谢

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值