• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java JSONHandler类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.google.samples.apps.iosched.io.JSONHandler的典型用法代码示例。如果您正苦于以下问题:Java JSONHandler类的具体用法?Java JSONHandler怎么用?Java JSONHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



JSONHandler类属于com.google.samples.apps.iosched.io包,在下文中一共展示了JSONHandler类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: processDataBody

import com.google.samples.apps.iosched.io.JSONHandler; //导入依赖的package包/类
/**
 * Processes a conference data body and calls the appropriate data type handlers
 * to process each of the objects represented therein.
 *
 * @param dataBody The body of data to process
 * @throws IOException If there is an error parsing the data.
 */
private void processDataBody(String dataBody) throws IOException {
    JsonReader reader = new JsonReader(new StringReader(dataBody));
    JsonParser parser = new JsonParser();
    try {
        reader.setLenient(true); // To err is human

        // the whole file is a single JSON object
        reader.beginObject();

        while (reader.hasNext()) {
            // the key is "rooms", "speakers", "tracks", etc.
            final String key = reader.nextName();
            final JSONHandler handler = mHandlerForKey.get(key);
            if (handler != null) {
                LOGD(TAG, "Processing key in conference data json: " + key);
                // pass the value to the corresponding handler
                handler.process(mGson, parser.parse(reader));
            } else {
                LOGW(TAG, "Skipping unknown key in conference data json: " + key);
                reader.skipValue();
            }
        }
        reader.endObject();
    } finally {
        reader.close();
    }
}
 
开发者ID:google,项目名称:iosched,代码行数:35,代码来源:ConferenceDataHandler.java


示例2: onHandleIntent

import com.google.samples.apps.iosched.io.JSONHandler; //导入依赖的package包/类
@Override
protected void onHandleIntent(Intent intent) {
    Context appContext = getApplicationContext();

    if (SettingsUtils.isDataBootstrapDone(appContext)) {
        LOGD(TAG, "Data bootstrap already done.");
        return;
    }
    try {
        LOGD(TAG, "Starting data bootstrap process.");
        // Load data from bootstrap raw resource.
        String bootstrapJson = JSONHandler
                .parseResource(appContext, R.raw.bootstrap_data);

        // Apply the data we read to the database with the help of the ConferenceDataHandler.
        ConferenceDataHandler dataHandler = new ConferenceDataHandler(appContext);
        dataHandler.applyConferenceData(new String[]{bootstrapJson},
                BuildConfig.BOOTSTRAP_DATA_TIMESTAMP, false);

        SyncHelper.performPostSyncChores(appContext);

        LOGI(TAG, "End of bootstrap -- successful. Marking bootstrap as done.");
        SettingsUtils.markSyncSucceededNow(appContext);
        SettingsUtils.markDataBootstrapDone(appContext);

        getContentResolver().notifyChange(Uri.parse(ScheduleContract.CONTENT_AUTHORITY),
                null, false);

    } catch (IOException ex) {
        // This is serious -- if this happens, the app won't work :-(
        // This is unlikely to happen in production, but IF it does, we apply
        // this workaround as a fallback: we pretend we managed to do the bootstrap
        // and hope that a remote sync will work.
        LOGE(TAG, "*** ERROR DURING BOOTSTRAP! Problem in bootstrap data?", ex);
        LOGE(TAG,
                "Applying fallback -- marking boostrap as done; sync might fix problem.");
        SettingsUtils.markDataBootstrapDone(appContext);
    } finally {
        // Request a manual sync immediately after the bootstrapping process, in case we
        // have an active connection. Otherwise, the scheduled sync could take a while.
        SyncHelper.requestManualSync(AccountUtils.getActiveAccount(appContext));
    }
}
 
开发者ID:dreaminglion,项目名称:iosched-reader,代码行数:44,代码来源:DataBootstrapService.java


示例3: performDataBootstrap

import com.google.samples.apps.iosched.io.JSONHandler; //导入依赖的package包/类
/**
 * Performs the one-time data bootstrap. This means taking our prepackaged conference data
 * from the R.raw.bootstrap_data resource, and parsing it to populate the database. This
 * data contains the sessions, speakers, etc.
 */
private void performDataBootstrap() {
    final Context appContext = getApplicationContext();
    LOGD(TAG, "Starting data bootstrap background thread.");
    mDataBootstrapThread = new Thread(new Runnable() {
        @Override
        public void run() {
            LOGD(TAG, "Starting data bootstrap process.");
            try {
                // Load data from bootstrap raw resource
                String bootstrapJson = JSONHandler.parseResource(appContext, R.raw.bootstrap_data);

                // Apply the data we read to the database with the help of the ConferenceDataHandler
                ConferenceDataHandler dataHandler = new ConferenceDataHandler(appContext);
                dataHandler.applyConferenceData(new String[]{bootstrapJson},
                        Config.BOOTSTRAP_DATA_TIMESTAMP, false);
                SyncHelper.performPostSyncChores(appContext);
                LOGI(TAG, "End of bootstrap -- successful. Marking boostrap as done.");
                PrefUtils.markSyncSucceededNow(appContext);
                PrefUtils.markDataBootstrapDone(appContext);
                getContentResolver().notifyChange(Uri.parse(ScheduleContract.CONTENT_AUTHORITY),
                        null, false);
            } catch (IOException ex) {
                // This is serious -- if this happens, the app won't work :-(
                // This is unlikely to happen in production, but IF it does, we apply
                // this workaround as a fallback: we pretend we managed to do the bootstrap
                // and hope that a remote sync will work.
                LOGE(TAG, "*** ERROR DURING BOOTSTRAP! Problem in bootstrap data?");
                LOGE(TAG, "Applying fallback -- marking boostrap as done; sync might fix problem.");
                PrefUtils.markDataBootstrapDone(appContext);
            }

            mDataBootstrapThread = null;

            // Request a manual sync immediately after the bootstrapping process, in case we
            // have an active connection. Otherwise, the scheduled sync could take a while.
            SyncHelper.requestManualSync(AccountUtils.getActiveAccount(appContext));
        }
    });
    mDataBootstrapThread.start();
}
 
开发者ID:gdg-bh,项目名称:AppDevFestSudeste2015,代码行数:46,代码来源:BaseActivity.java


示例4: onHandleIntent

import com.google.samples.apps.iosched.io.JSONHandler; //导入依赖的package包/类
@Override
protected void onHandleIntent(Intent intent) {
    Context appContext = getApplicationContext();

    if (SettingsUtils.isDataBootstrapDone(appContext)) {
        LOGD(TAG, "Data bootstrap already done.");
        return;
    }
    try {
        LOGD(TAG, "Starting data bootstrap process.");
        // Load data from bootstrap raw resource.
        String bootstrapJson = JSONHandler
                .parseResource(appContext, R.raw.bootstrap_data);

        // Apply the data we read to the database with the help of the ConferenceDataHandler.
        ConferenceDataHandler dataHandler = new ConferenceDataHandler(appContext);
        dataHandler.applyConferenceData(new String[]{bootstrapJson},
                BuildConfig.BOOTSTRAP_DATA_TIMESTAMP, false);

        SyncHelper.performPostSyncChores(appContext);

        LOGI(TAG, "End of bootstrap -- successful. Marking bootstrap as done.");
        SettingsUtils.markSyncSucceededNow(appContext);
        SettingsUtils.markDataBootstrapDone(appContext);

        getContentResolver().notifyChange(Uri.parse(ScheduleContract.CONTENT_AUTHORITY),
                null, false);

    } catch (IOException ex) {
        // This is serious -- if this happens, the app won't work :-(
        // This is unlikely to happen in production, but IF it does, we apply
        // this workaround as a fallback: we pretend we managed to do the bootstrap
        // and hope that a remote sync will work.
        LOGE(TAG, "*** ERROR DURING BOOTSTRAP! Problem in bootstrap data?", ex);
        LOGE(TAG,
                "Applying fallback -- marking boostrap as done; sync might fix problem.");
        SettingsUtils.markDataBootstrapDone(appContext);
    } finally {
        // Request a manual sync immediately after the bootstrapping process, in case we
        // have an active connection. Otherwise, the scheduled sync could take a while.
        SyncHelper.requestManualSync();
    }
}
 
开发者ID:google,项目名称:iosched,代码行数:44,代码来源:DataBootstrapService.java


示例5: onHandleIntent

import com.google.samples.apps.iosched.io.JSONHandler; //导入依赖的package包/类
@Override
protected void onHandleIntent(Intent intent) {
    Context appContext = getApplicationContext();

    try {
        // Load data from bootstrap a local file

        LOGD(TAG, "Starting full data bootstrap from file: " + BOOTSTRAP_FILE);

        if (!new File(BOOTSTRAP_FILE).canRead()) {
            LOGE(TAG, "File " + BOOTSTRAP_FILE + " could not be read. No bootstrap possible.");
        }

        String bootstrapJson = JSONHandler.parseFile(BOOTSTRAP_FILE);

        // Apply the data we read to the database with the help of the ConferenceDataHandler.
        ConferenceDataHandler dataHandler = new ConferenceDataHandler(appContext);

        dataHandler.applyConferenceData(new String[]{bootstrapJson},
                BuildConfig.BOOTSTRAP_DATA_TIMESTAMP, false);

        SyncHelper.performPostSyncChores(appContext);

        LOGI(TAG, "End of bootstrap -- successful. Marking bootstrap as done.");
        SettingsUtils.markSyncSucceededNow(appContext);
        SettingsUtils.markDataBootstrapDone(appContext);

        getContentResolver().notifyChange(Uri.parse(ScheduleContract.CONTENT_AUTHORITY),
                null, false);

    } catch (IOException ex) {
        // This is serious -- if this happens, the app won't work :-(
        // This is unlikely to happen in production, but IF it does, we apply
        // this workaround as a fallback: we pretend we managed to do the bootstrap
        // and hope that a remote sync will work.
        LOGE(TAG, "*** ERROR DURING BOOTSTRAP! Problem in bootstrap data?", ex);
        LOGE(TAG,
                "Applying fallback -- marking boostrap as done; sync might fix problem.");
        SettingsUtils.markDataBootstrapDone(appContext);
    } finally {
        // Request a manual sync immediately after the bootstrapping process, in case we
        // have an active connection. Otherwise, the scheduled sync could take a while.
        //SyncHelper.requestManualSync(AccountUtils.getActiveAccount(appContext));
    }
}
 
开发者ID:google,项目名称:iosched,代码行数:46,代码来源:LocalRefreshingBootstrapService.java



注:本文中的com.google.samples.apps.iosched.io.JSONHandler类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java RV32BufferFormat类代码示例发布时间:2022-05-22
下一篇:
Java HadoopPolicyProvider类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap