当前位置: 首页>>代码示例>>Java>>正文


Java Utility.closeQuietly方法代码示例

本文整理汇总了Java中com.facebook.internal.Utility.closeQuietly方法的典型用法代码示例。如果您正苦于以下问题:Java Utility.closeQuietly方法的具体用法?Java Utility.closeQuietly怎么用?Java Utility.closeQuietly使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.facebook.internal.Utility的用法示例。


在下文中一共展示了Utility.closeQuietly方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: deserializeFromDiskSynchronously

import com.facebook.internal.Utility; //导入方法依赖的package包/类
/**
 * NOTE: This MUST be called ONLY via the CreateLikeActionControllerWorkItem class to ensure
 * that it happens on the right thread, at the right time.
 */
private static LikeActionController deserializeFromDiskSynchronously(String objectId) {
    LikeActionController controller = null;

    InputStream inputStream = null;
    try {
        String cacheKey = getCacheKeyForObjectId(objectId);
        inputStream = controllerDiskCache.get(cacheKey);
        if (inputStream != null) {
            String controllerJsonString = Utility.readStreamToString(inputStream);
            if (!Utility.isNullOrEmpty(controllerJsonString)) {
                controller = deserializeFromJson(controllerJsonString);
            }
        }
    } catch (IOException e) {
        Log.e(TAG, "Unable to deserialize controller from disk", e);
        controller = null;
    } finally {
        if (inputStream != null) {
            Utility.closeQuietly(inputStream);
        }
    }

    return controller;
}
 
开发者ID:eviltnan,项目名称:kognitivo,代码行数:29,代码来源:LikeActionController.java

示例2: issueResponse

import com.facebook.internal.Utility; //导入方法依赖的package包/类
private static void issueResponse(
        final UploadContext uploadContext,
        final FacebookException error,
        final String videoId) {
    // Remove the UploadContext synchronously
    // Once the UploadContext is removed, this is the only reference to it.
    removePendingUpload(uploadContext);

    Utility.closeQuietly(uploadContext.videoStream);

    if (uploadContext.callback != null) {
        if (error != null) {
            ShareInternalUtility.invokeOnErrorCallback(uploadContext.callback, error);
        } else if (uploadContext.isCanceled) {
            ShareInternalUtility.invokeOnCancelCallback(uploadContext.callback);
        } else {
            ShareInternalUtility.invokeOnSuccessCallback(uploadContext.callback, videoId);
        }
    }
}
 
开发者ID:eviltnan,项目名称:kognitivo,代码行数:21,代码来源:VideoUploader.java

示例3: initialize

import com.facebook.internal.Utility; //导入方法依赖的package包/类
private void initialize()
        throws FileNotFoundException {
    ParcelFileDescriptor fileDescriptor = null;
    try {
        if (Utility.isFileUri(videoUri)) {
            fileDescriptor = ParcelFileDescriptor.open(
                    new File(videoUri.getPath()),
                    ParcelFileDescriptor.MODE_READ_ONLY);
            videoSize = fileDescriptor.getStatSize();
            videoStream = new ParcelFileDescriptor.AutoCloseInputStream(fileDescriptor);
        } else if (Utility.isContentUri(videoUri)) {
            videoSize = Utility.getContentSize(videoUri);
            videoStream = FacebookSdk
                    .getApplicationContext()
                    .getContentResolver()
                    .openInputStream(videoUri);
        } else {
            throw new FacebookException("Uri must be a content:// or file:// uri");
        }
    } catch (FileNotFoundException e) {
        Utility.closeQuietly(videoStream);

        throw e;
    }
}
 
开发者ID:eviltnan,项目名称:kognitivo,代码行数:26,代码来源:VideoUploader.java

示例4: serializeToDiskSynchronously

import com.facebook.internal.Utility; //导入方法依赖的package包/类
/**
 * NOTE: This MUST be called ONLY via the SerializeToDiskWorkItem class to ensure that it
 * happens on the right thread, at the right time.
 */
private static void serializeToDiskSynchronously(String cacheKey, String controllerJson) {
    OutputStream outputStream = null;
    try {
        outputStream = controllerDiskCache.openPutStream(cacheKey);
        outputStream.write(controllerJson.getBytes());
    } catch (IOException e) {
        Log.e(TAG, "Unable to serialize controller to disk", e);
    } finally {
        if (outputStream != null) {
            Utility.closeQuietly(outputStream);
        }
    }
}
 
开发者ID:eviltnan,项目名称:kognitivo,代码行数:18,代码来源:LikeActionController.java


注:本文中的com.facebook.internal.Utility.closeQuietly方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。