本文整理匯總了Java中com.android.volley.AuthFailureError.printStackTrace方法的典型用法代碼示例。如果您正苦於以下問題:Java AuthFailureError.printStackTrace方法的具體用法?Java AuthFailureError.printStackTrace怎麽用?Java AuthFailureError.printStackTrace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.android.volley.AuthFailureError
的用法示例。
在下文中一共展示了AuthFailureError.printStackTrace方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getBody
import com.android.volley.AuthFailureError; //導入方法依賴的package包/類
public byte[] getBody() {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(bos);
try {
Map<String, String> params = getParams();
if (params != null && params.size() > 0) {
textParse(dos, params, getParamsEncoding());
}
Map<String, DataPart> data = getByteData();
if (data != null && data.size() > 0) {
dataParse(dos, data);
}
dos.writeBytes("--" + this.boundary + "--" + "\r\n");
return bos.toByteArray();
} catch (IOException e) {
e.printStackTrace();
return null;
} catch (AuthFailureError authFailureError) {
authFailureError.printStackTrace();
return null;
}
}