本文整理匯總了Java中com.facebook.internal.Utility.readStreamToString方法的典型用法代碼示例。如果您正苦於以下問題:Java Utility.readStreamToString方法的具體用法?Java Utility.readStreamToString怎麽用?Java Utility.readStreamToString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.facebook.internal.Utility
的用法示例。
在下文中一共展示了Utility.readStreamToString方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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: createResponsesFromStream
import com.facebook.internal.Utility; //導入方法依賴的package包/類
static List<GraphResponse> createResponsesFromStream(
InputStream stream,
HttpURLConnection connection,
GraphRequestBatch requests
) throws FacebookException, JSONException, IOException {
String responseString = Utility.readStreamToString(stream);
Logger.log(LoggingBehavior.INCLUDE_RAW_RESPONSES, RESPONSE_LOG_TAG,
"Response (raw)\n Size: %d\n Response:\n%s\n", responseString.length(),
responseString);
return createResponsesFromString(responseString, connection, requests);
}