gpt4 book ai didi

Android Retrofit - onProgressUpdate 用于显示进度通知

转载 作者:IT老高 更新时间:2023-10-28 21:34:30 25 4
gpt4 key购买 nike

我目前正在使用 Square 的 Retrofit 进行 Android 网络通信。有没有办法在创建进度通知的任务期间获取进度,类似于 Facebook 在上传图片时使用的方法?

用例是在不压缩或缩放的情况下加载具有完整图像质量的图像。

我知道使用 asynctask 是如何实现的,但这会破坏使用 Retrofit 的目的。然而,这可能是我必须采取的路线。

最佳答案

此答案适用于 Retrofit 1。适用于与 Retrofit 2 兼容的解决方案 see this answer .


我遇到了同样的问题,最后设法做到了。我之前使用过spring lib,下面显示的内容适用于Spring,但由于我在将它用于InputStream时犯了一个错误,所以不一致。我将所有 API 移动到使用改造,上传是列表中的最后一个,我只是重写 TypedFile writeTo() 以更新我读取到 OutputStream 的字节。也许这可以改进,但正如我所说,我是在使用 Spring 时制作的,所以我只是重用了它。这是上传代码,它适用于我的应用程序,如果您想要下载反馈,那么您可以使用 @Streaming 并阅读 inputStream。

进度监听器

public interface ProgressListener {
void transferred(long num);
}

CountingTypedFile

public class CountingTypedFile extends TypedFile {

private static final int BUFFER_SIZE = 4096;

private final ProgressListener listener;

public CountingTypedFile(String mimeType, File file, ProgressListener listener) {
super(mimeType, file);
this.listener = listener;
}

@Override public void writeTo(OutputStream out) throws IOException {
byte[] buffer = new byte[BUFFER_SIZE];
FileInputStream in = new FileInputStream(super.file());
long total = 0;
try {
int read;
while ((read = in.read(buffer)) != -1) {
total += read;
this.listener.transferred(total);
out.write(buffer, 0, read);
}
} finally {
in.close();
}
}
}

MyApiService

public interface MyApiService {
@Multipart
@POST("/files")
ApiResult uploadFile(@Part("file") TypedFile resource, @Query("path") String path);
}

发送文件任务

private class SendFileTask extends AsyncTask<String, Integer, ApiResult> {
private ProgressListener listener;
private String filePath;
private FileType fileType;

public SendFileTask(String filePath, FileType fileType) {
this.filePath = filePath;
this.fileType = fileType;
}

@Override
protected ApiResult doInBackground(String... params) {
File file = new File(filePath);
totalSize = file.length();
Logger.d("Upload FileSize[%d]", totalSize);
listener = new ProgressListener() {
@Override
public void transferred(long num) {
publishProgress((int) ((num / (float) totalSize) * 100));
}
};
String _fileType = FileType.VIDEO.equals(fileType) ? "video/mp4" : (FileType.IMAGE.equals(fileType) ? "image/jpeg" : "*/*");
return MyRestAdapter.getService().uploadFile(new CountingTypedFile(_fileType, file, listener), "/Mobile Uploads");
}

@Override
protected void onProgressUpdate(Integer... values) {
Logger.d(String.format("progress[%d]", values[0]));
//do something with values[0], its the percentage so you can easily do
//progressBar.setProgress(values[0]);
}
}

CountingTypedFile 只是 TypedFile 的副本,但包括 ProgressListener。

关于Android Retrofit - onProgressUpdate 用于显示进度通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23348812/

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