`
king_tt
  • 浏览: 2291554 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

【方案汇总】IntentService报空指针异常的问题

 
阅读更多

实现了一个IntentService子类,但是运行的时候报空指针异常。

异常日志

04-03 18:19:53.849: W/dalvikvm(12857): threadid=1: thread exiting with uncaught exception (group=0x40015568)
04-03 18:19:53.849: E/AndroidRuntime(12857): FATAL EXCEPTION: main
04-03 18:19:53.849: E/AndroidRuntime(12857): java.lang.RuntimeException: Unable to start service com.paad.services.MyIntentService@4050f420 with Intent { cmp=com.paad.services/.MyIntentService }: java.lang.NullPointerException
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:2069)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at android.app.ActivityThread.access$2800(ActivityThread.java:117)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:994)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at android.os.Handler.dispatchMessage(Handler.java:99)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at android.os.Looper.loop(Looper.java:130)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at android.app.ActivityThread.main(ActivityThread.java:3703)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at java.lang.reflect.Method.invokeNative(Native Method)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at java.lang.reflect.Method.invoke(Method.java:507)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:866)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:624)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at dalvik.system.NativeStart.main(Native Method)
04-03 18:19:53.849: E/AndroidRuntime(12857): Caused by: java.lang.NullPointerException
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at android.app.IntentService.onStart(IntentService.java:110)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at android.app.IntentService.onStartCommand(IntentService.java:118)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at com.paad.services.MyIntentService.onStartCommand(MyIntentService.java:30)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:2056)
04-03 18:19:53.849: E/AndroidRuntime(12857): 	... 10 more
从日志中可见,在IntentService的onStart()方法中,存在一处空指针。

究其原因,是没有在IntentService的onCreate()回调中调用super.onCreate()。

跟踪IntentService的源码,代码如下所示:

    @Override
    public void onStart(Intent intent, int startId) {
        Message msg = mServiceHandler.obtainMessage();// 110行
        msg.arg1 = startId;
        msg.obj = intent;
        mServiceHandler.sendMessage(msg);
    }
第110行使用了一个mServiceHandler对象,它是在onCreate()里面初始化的。

    @Override
    public void onCreate() {
        // TODO: It would be nice to have an option to hold a partial wakelock
        // during processing, and to have a static startService(Context, Intent)
        // method that would launch the service & hand off a wakelock.

        super.onCreate();
        HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
        thread.start();

        mServiceLooper = thread.getLooper();
        mServiceHandler = new ServiceHandler(mServiceLooper);
    }

参考资料

http://stackoverflow.com/questions/7165215/null-pointer-exception-starting-intentservice


附录

/*
 * Copyright (C) 2008 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.app;

import android.content.Intent;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.IBinder;
import android.os.Looper;
import android.os.Message;

/**
 * IntentService is a base class for {@link Service}s that handle asynchronous
 * requests (expressed as {@link Intent}s) on demand.  Clients send requests
 * through {@link android.content.Context#startService(Intent)} calls; the
 * service is started as needed, handles each Intent in turn using a worker
 * thread, and stops itself when it runs out of work.
 *
 * <p>This "work queue processor" pattern is commonly used to offload tasks
 * from an application's main thread.  The IntentService class exists to
 * simplify this pattern and take care of the mechanics.  To use it, extend
 * IntentService and implement {@link #onHandleIntent(Intent)}.  IntentService
 * will receive the Intents, launch a worker thread, and stop the service as
 * appropriate.
 *
 * <p>All requests are handled on a single worker thread -- they may take as
 * long as necessary (and will not block the application's main loop), but
 * only one request will be processed at a time.
 *
 * @see android.os.AsyncTask
 */
public abstract class IntentService extends Service {
    private volatile Looper mServiceLooper;
    private volatile ServiceHandler mServiceHandler;
    private String mName;
    private boolean mRedelivery;

    private final class ServiceHandler extends Handler {
        public ServiceHandler(Looper looper) {
            super(looper);
        }

        @Override
        public void handleMessage(Message msg) {
            onHandleIntent((Intent)msg.obj);
            stopSelf(msg.arg1);
        }
    }

    /**
     * Creates an IntentService.  Invoked by your subclass's constructor.
     *
     * @param name Used to name the worker thread, important only for debugging.
     */
    public IntentService(String name) {
        super();
        mName = name;
    }

    /**
     * Sets intent redelivery preferences.  Usually called from the constructor
     * with your preferred semantics.
     *
     * <p>If enabled is true,
     * {@link #onStartCommand(Intent, int, int)} will return
     * {@link Service#START_REDELIVER_INTENT}, so if this process dies before
     * {@link #onHandleIntent(Intent)} returns, the process will be restarted
     * and the intent redelivered.  If multiple Intents have been sent, only
     * the most recent one is guaranteed to be redelivered.
     *
     * <p>If enabled is false (the default),
     * {@link #onStartCommand(Intent, int, int)} will return
     * {@link Service#START_NOT_STICKY}, and if the process dies, the Intent
     * dies along with it.
     */
    public void setIntentRedelivery(boolean enabled) {
        mRedelivery = enabled;
    }

    @Override
    public void onCreate() {
        // TODO: It would be nice to have an option to hold a partial wakelock
        // during processing, and to have a static startService(Context, Intent)
        // method that would launch the service & hand off a wakelock.

        super.onCreate();
        HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
        thread.start();

        mServiceLooper = thread.getLooper();
        mServiceHandler = new ServiceHandler(mServiceLooper);
    }

    @Override
    public void onStart(Intent intent, int startId) {
        Message msg = mServiceHandler.obtainMessage();
        msg.arg1 = startId;
        msg.obj = intent;
        mServiceHandler.sendMessage(msg);
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        onStart(intent, startId);
        return mRedelivery ? START_REDELIVER_INTENT : START_NOT_STICKY;
    }

    @Override
    public void onDestroy() {
        mServiceLooper.quit();
    }

    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    /**
     * This method is invoked on the worker thread with a request to process.
     * Only one Intent is processed at a time, but the processing happens on a
     * worker thread that runs independently from other application logic.
     * So, if this code takes a long time, it will hold up other requests to
     * the same IntentService, but it will not hold up anything else.
     *
     * @param intent The value passed to {@link
     *               android.content.Context#startService(Intent)}.
     */
    protected abstract void onHandleIntent(Intent intent);
}



分享到:
评论

相关推荐

    IntentService

    IntentService的使用极大地简化了后台异步任务处理,并且保证了任务执行的串行化,避免了多线程竞争资源的问题。下面将详细介绍IntentService的基本使用方法。 1. **IntentService的创建** 创建一个IntentService...

    IntentService实现,使用代码

    IntentService是Android系统提供的一种特殊类型的Service,它主要用于在后台执行单线程的任务,处理异步请求。这个服务会自动创建工作线程,并且...在实际项目中,合理利用IntentService可以有效解决许多后台处理问题。

    service和Intentservice示例

    在Android应用开发中,`Service`和`IntentService`是两个关键组件,它们用于在后台执行长时间运行的任务,不依赖于用户界面。本篇将详细阐述`Service`和`IntentService`的用法以及需要注意的要点。 首先,我们来...

    android 中的服务Service intentService例子

    4. IntentService会自动处理并发问题,每个Intent都会依次在单独的工作线程中处理。 **示例代码** ```java public class MyIntentService extends IntentService { public MyIntentService() { super(...

    Android中IntentService的特征

    service中1需要手动开启子线程2服务开启之后会一直运行,需要手动调用stopService();或者stopSelf(); intentService是一种异步(子线程)、自动停止的服务,这个例子测试IntentService的特征

    IntentService学习Demo

    - 缺点:IntentService只能串行处理任务,如果需要并行处理多个任务,可能需要考虑其他解决方案,如HandlerThread或ThreadPoolExecutor。 5. **IntentService与普通Service的区别** - 普通Service默认在主线程...

    IntentService模拟上传图片

    注意,由于IntentService在工作线程中执行,所以无需担心ANR(Application Not Responding)问题。 总结起来,IntentService在Android中提供了一种简单、高效的方式来处理后台任务,尤其是像上传图片这样的IO密集型...

    Android—IntentService

    IntentService的使用既简单又高效,能够确保工作在安全的环境中,避免内存泄漏和线程安全问题。 在Android应用开发中,IntentService的主要特点和优势包括: 1. 单线程执行:IntentService内部使用了一个工作队列...

    IntentService简单应用

    在Android开发中,IntentService是一种特殊类型的Service,它主要用于执行后台任务,比如网络请求、数据同步等。IntentService的设计理念是让服务在一个单独的工作线程中运行,避免阻塞主线程,提供了一种有序处理...

    android IntentService 的学习例子

    2. 自动启动和停止:当IntentService中的工作队列为空时,系统会自动停止该服务,无需手动调用stopSelf()方法。 3. 非阻塞UI:由于IntentService的所有工作都在后台线程进行,因此不会影响主线程,保证了用户界面的...

    详解Android中IntentService的使用方法

    在Android应用开发中,IntentService是一个非常重要的组件,它继承自Service类,专门用于执行后台的单线程任务,尤其适合处理那些可能阻塞主线程的操作,如网络请求、文件下载等。IntentService的设计旨在避免主线程...

    IntentService1

    在Android应用开发中,IntentService是一个非常重要的组件,它继承自Service,并且专门设计用于执行后台的单一任务。"IntentService1"这个示例显然旨在教你如何使用IntentService来处理异步任务,避免阻塞主线程,...

    Android线程,线程池,AsyncTask,HandlerThread和IntentService的用法

    但需要注意,由于AsyncTask与Activity的生命周期紧密关联,当Activity销毁时,AsyncTask可能引发异常。 4. **HandlerThread**: HandlerThread是一个具有消息循环的线程,用于处理消息和Runnable对象。它内部包含...

    IntentService使用Demo

    IntentService是Android系统提供的一种特殊类型的Service,它主要用于在后台执行单线程的任务,处理异步请求,且当任务完成后会自动停止服务,无需手动管理服务的生命周期。这个"IntentService使用Demo"将帮助我们...

    Android中的IntentService简介.pdf

    IntentService是Android操作系统中一种特殊的Service子类,它主要用于处理那些需要后台运行的单个任务,比如网络请求、数据同步等。与普通的Service相比,IntentService具有更好的线程管理和任务调度机制,使得...

    android IntentService服务应用举例demo源码

    IntentService 是 Service 组件类的一个扩展,用于按需处理异步请求(以 Intent 的形式表达)。客户端通过调用 android.content.Context#startService(Intent) 方法发送请求;服务会在需要时被启动,使用一个...

    IntentService写一个应用切到后台也正常运行的Service

    IntentService则提供了一种优雅的解决方案,即使应用被切换到后台,它也能正常运行,直到所有任务完成,然后自动停止自身,释放资源。 IntentService的主要特点包括: 1. 单线程:IntentService内部维护了一个工作...

    Android IntentService详解及使用实例

    Android IntentService详解 一、IntentService简介 IntentService是Service的子类,比普通的Service增加了额外的功能。先看Service本身存在两个问题:  Service不会专门启动一条单独的进程,Service与它所在...

Global site tag (gtag.js) - Google Analytics