本文整理匯總了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;
}
示例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);
}
}
}
示例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;
}
}
示例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);
}
}
}