- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在函数 onProgressUpdate 上出现“ArrayIndexOutOfBoundsException”错误我认为一切正常,但找不到问题所在。当这个任务要运行时,logcat 说 ArrayIndexOutOfBoundsException Lenght=0 index=0 !!!我在这样的链接中看到了这段代码:
How to implement file upload progress bar in android
Upload large file with progress bar and without OutOfMemory Error in Android
我首先测试了上传任务,它工作正常......但是当我添加进度条时它崩溃了......请帮我解决
public class InsertFile extends AsyncTask<String, Integer, String> {
final String name;
final Context parent;
String sourceFileUri;
String upLoadServerUri;
int allByte,perBytes=0;
SeekArc skarc;
private ProgressDialog dialog;
public InsertFile(Context c,String uri,String name,String folder2Up, SeekArc s){
parent = c;
sourceFileUri=uri;
this.name=name;
upLoadServerUri="*******************************";
//skarc=s;
dialog = new ProgressDialog(parent);
dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
dialog.setMessage("Uploading photo, please wait.");
dialog.setMax(100);
dialog.setCancelable(true);
}
@Override
protected String doInBackground(String... params) {
try {
HttpURLConnection conn = null;
DataOutputStream dos = null;
String lineEnd = "\r\n";
String twoHyphens = "--";
String boundary = "*****";
int bytesRead, bytesAvailable, bufferSize;
byte[] buffer;
int maxBufferSize = 1 * 1024 * 1024;
File sourceFile = new File(sourceFileUri);
publishProgress();
if (sourceFile.isFile()) {
try {
// open a URL connection to the Servlet
FileInputStream fileInputStream = new FileInputStream(sourceFile);
URL url = new URL(upLoadServerUri);
// Open a HTTP connection to the URL
conn = (HttpURLConnection) url.openConnection();
conn.setDoInput(true); // Allow Inputs
conn.setDoOutput(true); // Allow Outputs
conn.setUseCaches(false); // Don't use a Cached Copy
conn.setRequestMethod("POST");
conn.setRequestProperty("Connection", "Keep-Alive");
conn.setRequestProperty("ENCTYPE",
"multipart/form-data");
conn.setRequestProperty("Content-Type",
"multipart/form-data;boundary=" + boundary);
conn.setRequestProperty("bill", sourceFileUri);
dos = new DataOutputStream(conn.getOutputStream());
dos.writeBytes(twoHyphens + boundary + lineEnd);
dos.writeBytes("Content-Disposition: form-data; name=\"bill\";filename=\""
+ name + "\"" + lineEnd);
dos.writeBytes(lineEnd);
// create a buffer of maximum size
bytesAvailable = fileInputStream.available();
allByte=bytesAvailable;
bufferSize = Math.min(bytesAvailable, maxBufferSize);
buffer = new byte[bufferSize];
bytesRead = fileInputStream.read(buffer, 0, bufferSize);
perBytes=0;
perBytes=((allByte-bytesAvailable)*100)/allByte;
while (bytesRead > 0) {
dos.write(buffer, 0, bufferSize);
bytesAvailable = fileInputStream.available();
bufferSize = Math.min(bytesAvailable, maxBufferSize);
bytesRead = fileInputStream.read(buffer, 0, bufferSize);
perBytes=((allByte-bytesAvailable)*100)/allByte;
publishProgress(Integer.valueOf(perBytes));
}
// send multipart form data necesssary after file
// data...
dos.writeBytes(lineEnd);
dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);
// Responses from the server (code and message)
//serverResponseCode = conn.getResponseCode();
//String serverResponseMessage = conn
// .getResponseMessage();
//if (serverResponseCode == 200) {
// messageText.setText(msg);
//Toast.makeText(ctx, "File Upload Complete.",
// Toast.LENGTH_SHORT).show();
// recursiveDelete(mDirectory1);
//}
int serverResponseCode = conn.getResponseCode();
String serverResponseMessage = conn.getResponseMessage();
Log.i("uploadFile", "HTTP Response is : " + serverResponseMessage + ": " + serverResponseCode);
if (serverResponseCode == 200) {
Handler handler = new Handler(parent.getMainLooper());
handler.post(new Runnable() {
public void run() {
Toast.makeText(parent, "File is uploaded", Toast.LENGTH_LONG).show();
}
});
}
// close the streams //
fileInputStream.close();
dos.flush();
dos.close();
}catch(Exception e){
e.printStackTrace();
}
}
else{
Handler handler = new Handler(parent.getMainLooper());
handler.post(new Runnable() {
public void run() {
Toast.makeText(parent, "No file", Toast.LENGTH_LONG).show();
}
});
}
}
catch (final Exception ex) {
ex.printStackTrace();
Handler handler = new Handler(parent.getMainLooper());
handler.post(new Runnable() {
public void run() {
Toast.makeText(parent, ex.toString(), Toast.LENGTH_LONG).show();
}
});
}
return "Executed";
}
@Override
protected void onProgressUpdate(Integer... values) {
dialog.setProgress(values[0]);
}
@Override
protected void onPostExecute(String result) {
dialog.dismiss();
}
@Override
protected void onPreExecute() {
dialog.show();
}
最佳答案
似乎您是在不带任何参数的情况下发布您的进度,因此您的 onProgressUpdate() 值数组为空。
关于android - onProgressUpdate 上的 ArrayIndexOutOfBoundsException 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34343598/
private class DownloadTextTask extends AsyncTask { CharSequence contentText; Context
我正在使用 Retrofit 从 api 接收 json 数据,并且工作完美,但将来我想显示进度条。我决定实现 onProgressUpdate 来检查是否调用了此方法,但在检查 Logcat 选项卡
我正在练习 AsyncTask 的工作,为此我想使用 onProgressUpdate 函数。目前在我的程序中,我有一个 UI,它允许用户选择输入(在 AsyncTask 完成后将显示在 TextVi
我是一名新程序员。我看过很多教程,但不明白哪里出了问题。我正在尝试从异步任务创建 ProgressBar。但是它总是使我的应用程序崩溃。 这是“主”应用程序: package pt.flag.ense
是否有可能某些调用 publishProgress 被 onProgressUpdate 遗漏了?我的意思是,在使用 publishProgress 调用的情况下,doInBackground 和 o
我从过去 2 天开始就一直卡住了。在我的情况下,没有调用 onProgressUpdate() 。所以它没有更新进度条。任何人都可以看看并提出建议吗?谢谢。这是我的代码 package com.exa
我试图通过 onprogress 更新方法只显示一次通知。存在允许显示通知的条件。问题是它在第一个通知之后继续显示通知,并且手机一直在响铃和振动。我只想收到一个关于某事的通知并停止。有可能吗?有人可以
我的 asynctask 没有进入 onProgressUpdate。为什么?我将在 asynctask 中创建进度条。下面是我的代码,使用进度条显示上传图像。 public static class
我在onCreate中有这个GetAllUsers();并且我有这个 private void GetAllUsers() { (new LoadingUsers(this)).execute()
目标: 基于使用异步的 onProgressUpdate 显示文本“Test”。 问题: 我不明白为什么代码不显示文本“测试”。 我错过了什么? 谢谢! 信息: *我是安卓新手 *我正在使用 API
我通过了一些指南,我知道如何像这样将许多参数传递给 onProgressUpdate @Override protected void doInBackground(Void... params){
编辑:我将这个 pB = (ProgressBar) findViewById(R.id.progressBar); 放在 onPreExecute() 中。它有效,一切都有效。但这是一个好的解决方案
我有一个 AsyncTask,它使用轮询队列来查看是否有新对象到达。当它检测到新对象时,我让它以字符串形式收集信息,然后发布进度(信息)。在 onProgressUpdate 中,它将字符串添加到列表
我目前正在使用 Square 的 Retrofit 进行 Android 网络通信。有没有办法在创建进度通知的任务期间获取进度,类似于 Facebook 在上传图片时使用的方法? 用例是在不压缩或缩放
我想显示下载图像的进度条并设置自定义颜色我在 onProgressUpdate() 中执行此操作,但它不起作用,它也不会出现在 logcat 中。它还会显示白屏,直到下载完成,如果我在下载过程中按后退
我有一个异步方法,可以在 Google map View 上放置标记。在下面的代码中,我尝试将对象 overrideitem 传递到 onProgressUpdate 方法中。我收到编译器错误,指出
我正在使用 AsyncTask 计算一个 double 值,然后我想发布这个 double 值 private class CalcTask extends AsyncTask{ @Overr
我在函数 onProgressUpdate 上出现“ArrayIndexOutOfBoundsException”错误我认为一切正常,但找不到问题所在。当这个任务要运行时,logcat 说 Array
在 Asyntask 中,我在 Asyntask 的全局变量中实例化了一个进度对话框: ProgressDialog progressDialog; 然后,在 DoInBackGround 中,我调用
我有以下代码在异步任务中运行客户端套接字连接: @Override protected Boolean doInBackground(Void... params) { //This runs on
我是一名优秀的程序员,十分优秀!