Webサービスを介して写真をアップロードするアプリケーションがあります。以前は、ファイルをストリームにロードして、Base64に変換していました。次に、OutputStreamWriterのwrite()メソッドを介して結果の文字列を投稿しました。現在、Webサービスは変更されており、multipart / form-dataを想定しており、Base64を想定していません。
したがって、どういうわけか、このファイルの文字を変換せずにそのまま投稿する必要があります。私は近くにいると確信していますが、私が今までに得たのは、コンテンツの長さのアンダーフローまたはオーバーフローだけです。奇妙なことに、デバッガーでは、バッファーの長さが投稿している文字列と同じ長さであることがわかります。これが私がしていることであり、うまくいけば十分なコードです:
// conn is my connection
OutputStreamWriter dataStream = new OutputStreamWriter(conn.getOutputStream());
// c is my file
int bytesRead = 0;
long bytesAvailable = c.length();
while (bytesAvailable > 0) {
byte[] buffer = new byte[Math.min(12288, (int)bytesAvailable)];
bytesRead = fileInputStream.read(buffer, 0, Math.min(12288, (int)bytesAvailable));
// assign the string if needed.
if (bytesRead > 0) {
bytesAvailable = fileInputStream.available();
// I've tried many encoding types here.
String sTmp = new String(buffer, "ISO-8859-1");
// HERE'S the issue. I can't just write the buffer,
dataStream.write(sTmp);
dataStream.flush();
// Yes there's more code, but this should be enough to show why I don't know what I'm doing!