gpt4 book ai didi

android - 使用单个 AsyncTask 上传所有列表项

转载 作者:行者123 更新时间:2023-11-29 00:12:27 25 4
gpt4 key购买 nike

点击按钮将批量图片上传到服务器,但有一个问题,每当我点击上传所有按钮时,它会开始上传所有列表项图片,但每次它都会为每个列表行恢复新的进度。

就像我在一个列表中有 500 个列表项,所以它会恢复 500 个进度,而我只想对所有进度使用单个进度。

这是我正在使用的代码:

public class MainActivity extends Activity {

static ListView lstView;
private Handler handler = new Handler();;
static List<MyData> ImageList;
String strPath;
int position;
File newFile;
ViewHolder holder;
View v;
String fileName;
ImageAdapter mAdapter;
Button btnUploadAll;
int i=0;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

btnUploadAll = (Button) findViewById(R.id.btnUploadAll);

btnUploadAll.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if(ImageList.size()!=0)
{
new UploadFileAsync().execute(String.valueOf(i));
}
}
});

/*** Get Images from SDCard ***/
ImageList = getSD();
// ListView and imageAdapter
lstView = (ListView) findViewById(R.id.listView);
mAdapter = new ImageAdapter(this);
lstView.setAdapter(mAdapter);

}

private List<MyData> getSD() {
List<MyData> it = new ArrayList<MyData>();
String root_sd = Environment.getExternalStorageDirectory().toString();
File f = new File(root_sd + "/mydata");
File[] files = f.listFiles();
for (int i = 0; i < files.length; i++) {
File file = files[i];
Log.d("Count", file.getPath());
MyData data = new MyData();
data.setImages(file.getPath());
data.setStatusEnable(true);
it.add(data);
}
return it;
}

static class ViewHolder {
public ViewHolder(View convertView) {
// TODO Auto-generated constructor stub
}

TextView textName;
ImageView thumbnail;
TextView textStatus;
Button btnUpload;

}

public class ImageAdapter extends BaseAdapter {
public ImageAdapter(Context c) {

}

public int getCount() {
// TODO Auto-generated method stub
return ImageList.size();
}

public Object getItem(int position) {
// TODO Auto-generated method stub
return position;
}

public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
}

public View getView(final int position, View convertView,
ViewGroup parent) {
// Avoid unneccessary calls to findViewById() on each row, which is
// expensive!

holder = null;

if (convertView == null) {
convertView = getLayoutInflater().inflate(
R.layout.adapter_main, null);
holder = new ViewHolder(convertView);

// Create a ViewHolder and store references to the children
// views
holder.textName = (TextView) convertView
.findViewById(R.id.textName);
holder.thumbnail = (ImageView) convertView
.findViewById(R.id.thumbnail);
holder.btnUpload = (Button) convertView
.findViewById(R.id.btnUpload);
holder.textStatus = (TextView) convertView
.findViewById(R.id.textStatus);

// The tag can be any Object, this just happens to be the
// ViewHolder
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.btnUpload.setEnabled(ImageList.get(position)
.isStatusEnable());
holder.textStatus.setText(ImageList.get(position).getMessage());
strPath = ImageList.get(position).getImages().toString();

// Get File Name
fileName = strPath.substring(strPath.lastIndexOf('/') + 1,
strPath.length());
File file = new File(strPath);
@SuppressWarnings("unused")
long length = file.length();
holder.textName.setText(fileName);

final BitmapFactory.Options options = new BitmapFactory.Options();

Bitmap bm = BitmapFactory.decodeFile(strPath, options);
holder.thumbnail.setImageBitmap(bm);

// btnUpload
holder.btnUpload.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Upload
startUpload(position);
}
});

return convertView;

}
}

// Upload

public void startUpload(final int position) {

Runnable runnable = new Runnable() {

public void run() {

handler.post(new Runnable() {

public void run() {
v = lstView.getChildAt(position
- lstView.getFirstVisiblePosition());
holder = (ViewHolder) v.getTag();
synchronized (this) {
ImageList.get(position).setStatusEnable(false);
mAdapter.notifyDataSetChanged();
}

new UploadFileAsync().execute(String.valueOf(position));
}
});
}
};
new Thread(runnable).start();
}

// Async Upload
public class UploadFileAsync extends AsyncTask<String, Void, Void> {

private ProgressDialog pDialog;
String resServer;

protected void onPreExecute() {
super.onPreExecute();

pDialog = new ProgressDialog(MainActivity.this);
pDialog.setMessage("Wait...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(true);
pDialog.show();
}

@Override
protected Void doInBackground(String... params) {
position = Integer.parseInt(params[0]);
int bytesRead, bytesAvailable, bufferSize;
byte[] buffer;
int maxBufferSize = 1 * 1024 * 1024;
int resCode = 0;
String resMessage = "";

String lineEnd = "\r\n";
String twoHyphens = "--";
String boundary = "*****";

// File Path
String strSDPath = ImageList.get(position).getImages().toString();

// Upload to PHP Script
String strUrlServer = "http://10.0.2.2/uploadFile.php";

try {
/** Check file on SD Card ***/
File file = new File(strSDPath);
if (!file.exists()) {
resServer = "{\"StatusID\":\"0\",\"Message\":\"Please check path on SD Card\"}";
return null;
}

FileInputStream fileInputStream = new FileInputStream(new File(
strSDPath));

URL url = new URL(strUrlServer);
HttpURLConnection conn = (HttpURLConnection) url
.openConnection();
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setUseCaches(false);
conn.setRequestMethod("POST");

conn.setRequestProperty("Connection", "Keep-Alive");
conn.setRequestProperty("Content-Type",
"multipart/form-data;boundary=" + boundary);

DataOutputStream outputStream = new DataOutputStream(
conn.getOutputStream());
outputStream.writeBytes(twoHyphens + boundary + lineEnd);
outputStream
.writeBytes("Content-Disposition: form-data; name=\"filUpload\";filename=\""
+ strSDPath + "\"" + lineEnd);
outputStream.writeBytes(lineEnd);

bytesAvailable = fileInputStream.available();
bufferSize = Math.min(bytesAvailable, maxBufferSize);
buffer = new byte[bufferSize];

// Read file
bytesRead = fileInputStream.read(buffer, 0, bufferSize);

while (bytesRead > 0) {
outputStream.write(buffer, 0, bufferSize);
bytesAvailable = fileInputStream.available();
bufferSize = Math.min(bytesAvailable, maxBufferSize);
bytesRead = fileInputStream.read(buffer, 0, bufferSize);
}

outputStream.writeBytes(lineEnd);
outputStream.writeBytes(twoHyphens + boundary + twoHyphens
+ lineEnd);

// Response Code and Message
resCode = conn.getResponseCode();
if (resCode == HttpURLConnection.HTTP_OK) {
InputStream is = conn.getInputStream();
ByteArrayOutputStream bos = new ByteArrayOutputStream();

int read = 0;
while ((read = is.read()) != -1) {
bos.write(read);
}

byte[] result = bos.toByteArray();
bos.close();

resMessage = new String(result);

}

Log.d("resCode=", Integer.toString(resCode));
Log.d("resMessage=", resMessage.toString());

fileInputStream.close();
outputStream.flush();
outputStream.close();

resServer = resMessage.toString();

} catch (Exception ex) {
ex.printStackTrace();
}

return null;
}

protected void onPostExecute(Void unused) {
if(i<imageList.size()){
i++;
new UploadFileAsync().execute(String.valueOf(i));
}
statusWhenFinish(position, resServer);
// dismiss the dialog once product deleted
pDialog.dismiss();
}

}

// When Upload Finish
@SuppressWarnings("unused")
protected void statusWhenFinish(int position, String resServer) {

/*** Default Value ***/
String strStatusID = "";
String strError = "";

try {

JSONObject c = new JSONObject(resServer);
strStatusID = c.getString("StatusID");
strError = c.getString("Message");
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

// // prepare Status
if (strStatusID.equals("0")) {
ImageList.get(position).setMessage("Failed");
ImageList.get(position).setStatusEnable(true);
mAdapter.notifyDataSetChanged();

} else if (strStatusID.equals("1")) {
ImageList.get(position).setMessage("Already Exists");
ImageList.get(position).setStatusEnable(false);
mAdapter.notifyDataSetChanged();

} else if(strStatusID.equals("2")) {
ImageList.get(position).setMessage("Uploaded");
ImageList.get(position).setStatusEnable(false);
mAdapter.notifyDataSetChanged();
} else {

}

}

/**
* Introduce a class with below attributes to hold a state of each row in
* single element
*
*/
public class MyData {
/* Image url or path of image in single row */
private String images;

/* anme of image in single row */
private String name;

/* status ID of image in single row */
private String statusID;

/* message of image in single row */
private String message;

private boolean statusEnable;

public boolean isStatusEnable() {
return statusEnable;
}

public void setStatusEnable(boolean statusEnable) {
this.statusEnable = statusEnable;
}

// Generate getters and setter
public String getImages() {
return images;
}

public void setImages(String images) {
this.images = images;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public String getStatusID() {
return statusID;
}

public void setStatusID(String statusID) {
this.statusID = statusID;
}

public String getMessage() {
return message;
}

public void setMessage(String message) {
this.message = message;
}

}

}

最佳答案

再次抱歉,我现在太忙了,无法编辑您的整个代码,所以我会为您提供指导。首先,将异步任务类中的 private ProgressDialog pDialog; 移动到全局变量,例如:

String fileName;
ImageAdapter mAdapter;
Button btnUploadAll;
int i=0;
private ProgressDialog pDialog;

其次,将进度对话框的实例化对象移动到:

if(ImageList.size()!=0)
{
pDialog = new ProgressDialog(MainActivity.this);
pDialog.setMessage("Wait...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(true);
pDialog.show();
new UploadFileAsync().execute(String.valueOf(i));
}

第三,上传所有图片后关闭对话框:

if(i<imageList.size()){
i++;
new UploadFileAsync().execute(String.valueOf(i));
}
else {
pDialog.dismiss();
}
statusWhenFinish(position, resServer);

关于android - 使用单个 AsyncTask 上传所有列表项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29247185/

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