gpt4 book ai didi

java - 在 Android 中使用 HttpPost 获取文件上传进度

转载 作者:行者123 更新时间:2023-11-30 02:36:49 25 4
gpt4 key购买 nike

我正在尝试使用 HttpPost 获取实际文件上传的进度。到目前为止,我有一个稳定的解决方案(我在 SO 中找到了),但在上传大文件后我意识到它只计算写入输出缓冲区的字节数而不是传输后进度。我想以某种方式获得实际“发布”的进度。有人可以解释我如何使用我迄今为止努力工作的成果来实现这一目标吗?我在网上找到的大多数解决方案都只计算写入输出缓冲区的字节数(这对于小文件来说已经足够了,但在传输大文件时就不行了)。

public static String postFile(final Context context, String fileName) throws Exception {

    HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://my.url/");
MultipartEntityBuilder builder = MultipartEntityBuilder.create();
builder.setMode(HttpMultipartMode.BROWSER_COMPATIBLE);

final File file = new File(fileName);
final long totalSize = file.length();
FileBody fb = new FileBody(file);

builder.addPart("uploaded_file", new FileBody(new File(fileName)));


final HttpEntity yourEntity = builder.build();

int progressPercent = 0;

class ProgressiveEntity implements HttpEntity {
@Override
public void consumeContent() throws IOException {
yourEntity.consumeContent();
}
@Override
public InputStream getContent() throws IOException,
IllegalStateException {
return yourEntity.getContent();
}
@Override
public Header getContentEncoding() {
return yourEntity.getContentEncoding();
}
@Override
public long getContentLength() {
return yourEntity.getContentLength();
}
@Override
public Header getContentType() {
return yourEntity.getContentType();
}
@Override
public boolean isChunked() {
return yourEntity.isChunked();
}
@Override
public boolean isRepeatable() {
return yourEntity.isRepeatable();
}
@Override
public boolean isStreaming() {
return yourEntity.isStreaming();
} // CONSIDER put a _real_ delegator into here!

@Override
public void writeTo(OutputStream outstream) throws IOException {

class ProxyOutputStream extends FilterOutputStream {

public ProxyOutputStream(OutputStream proxy) {
super(proxy);
}
public void write(int idx) throws IOException {
out.write(idx);
}
public void write(byte[] bts) throws IOException {
out.write(bts);
}
public void write(byte[] bts, int st, int end) throws IOException {
out.write(bts, st, end);
}
public void flush() throws IOException {
out.flush();
}
public void close() throws IOException {
out.close();
}
} // CONSIDER import this class (and risk more Jar File Hell)

class ProgressiveOutputStream extends ProxyOutputStream {
long totalSent;
public ProgressiveOutputStream(OutputStream proxy) {
super(proxy);
totalSent = 0;
}

public void write(byte[] bts, int st, int end) throws IOException {

// end is the amount being sent this time
// st is always zero and end=bts.length()

totalSent += end;
int progress = (int) ((totalSent / (float) totalSize) * 100);
out.write(bts, st, end);
}
}

yourEntity.writeTo(new ProgressiveOutputStream(outstream));
}

};



ProgressiveEntity myEntity = new ProgressiveEntity();

post.setEntity(myEntity);

//Output to buffer is complete at this point!
HttpResponse response = client.execute(post);

String jsonResponseStr = getContent(response);

Log.d("MYTAG",jsonResponseStr);

return jsonResponseStr;

}

在我在远程服务器上的接收脚本中,我只是回显一个字符串,以便我可以立即发送响应(根本没有文件/数据库处理),而来自服务器的响应仍然需要很长时间。我坚信此时传输发生在写入缓冲区完成之后。

最佳答案

class ProgressiveOutputStream extends ProxyOutputStream {
long totalSent;
public ProgressiveOutputStream(OutputStream proxy) {
super(proxy);
totalSent = 0;
}

public void write(byte[] bts, int st, int end) throws IOException {

// FIXME Put your progress bar stuff here!
// end is the amount being sent this time
// st is always zero and end=bts.length()

totalSent += end;
progress.publish((int) ((totalSent / (float) totalSize) * 100));
out.write(bts, st, end);
}

关于java - 在 Android 中使用 HttpPost 获取文件上传进度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26417610/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com