當前位置: 首頁>>代碼示例>>Java>>正文


Java VolleyLog.wtf方法代碼示例

本文整理匯總了Java中com.android.volley.VolleyLog.wtf方法的典型用法代碼示例。如果您正苦於以下問題:Java VolleyLog.wtf方法的具體用法?Java VolleyLog.wtf怎麽用?Java VolleyLog.wtf使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.android.volley.VolleyLog的用法示例。


在下文中一共展示了VolleyLog.wtf方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getBody

import com.android.volley.VolleyLog; //導入方法依賴的package包/類
@Override
public byte[] getBody() {
    try {
        return mRequestBody == null ? null : mRequestBody.getBytes(PROTOCOL_CHARSET);
    } catch (UnsupportedEncodingException uee) {
        VolleyLog.wtf("Unsupported Encoding while trying to get the bytes of %s using %s",
                mRequestBody, PROTOCOL_CHARSET);
        return null;
    }
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:11,代碼來源:JsonRequest.java

示例2: getBody

import com.android.volley.VolleyLog; //導入方法依賴的package包/類
public byte[] getBody() {
    byte[] bArr = null;
    try {
        if (this.mRequestBody != null) {
            bArr = this.mRequestBody.getBytes("utf-8");
        }
    } catch (UnsupportedEncodingException e) {
        VolleyLog.wtf("Unsupported Encoding while trying to get the bytes of %s using %s", this.mRequestBody, "utf-8");
    }
    return bArr;
}
 
開發者ID:JackChan1999,項目名稱:boohee_v5.6,代碼行數:12,代碼來源:JsonRequest.java

示例3: getUrlGet

import com.android.volley.VolleyLog; //導入方法依賴的package包/類
/**
 * Retorna a url concatenada com os parametros na request do tipo GET e que possue parametros
 *
 * @return
 */
private String getUrlGet() {
    try {
        return super.getUrl() + "?" + requestParams.getParamsQuery(); // concatena a url com os parametros
    } catch (Exception e) {
        VolleyLog.wtf("Unsupported Encoding while trying to get the bytes of %s using %s", new Object[]{requestParams.getParamsObj(), PROTOCOL_CHARSET});
        return null;
    } finally {
        requestParams = null;
    }
}
 
開發者ID:giovanimoura,項目名稱:plainrequest,代碼行數:16,代碼來源:RequestCustom.java

示例4: getBody

import com.android.volley.VolleyLog; //導入方法依賴的package包/類
@Override
public byte[] getBody() throws AuthFailureError {
    try {
        return requestParams.isNull() ? null : requestParams.getParamsBody().getBytes(PROTOCOL_CHARSET);
    } catch (Exception e) {
        VolleyLog.wtf("Unsupported Encoding while trying to get the bytes of %s using %s", new Object[]{requestParams.getParamsObj(), PROTOCOL_CHARSET});
        return null;
    } finally {
        requestParams = null;
    }
}
 
開發者ID:giovanimoura,項目名稱:plainrequest,代碼行數:12,代碼來源:RequestCustom.java

示例5: gzipToByte

import com.android.volley.VolleyLog; //導入方法依賴的package包/類
private byte[] gzipToByte(byte[] data) throws UnsupportedEncodingException {
    byte[] bytes;
    try {

        GZIPInputStream gStream = new GZIPInputStream(new ByteArrayInputStream(data));
        bytes = IOUtils.toByteArray(gStream);

    } catch (IOException e) {
        VolleyLog.wtf("Unsupported Encoding GZIP");
        throw new UnsupportedEncodingException(e.getMessage());
    }

    return bytes;
}
 
開發者ID:giovanimoura,項目名稱:plainrequest,代碼行數:15,代碼來源:RequestCustom.java


注:本文中的com.android.volley.VolleyLog.wtf方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。