您好,登錄后才能下訂單哦!
public static String Utf8URLencode(String text) {
//text.replace("\n", "%20");
//text.replace("\t", "%0a");
//text.replace(" ", "%0d");
StringBuffer result = new StringBuffer();
for (int i = 0; i < text.length(); i++) {
char c = text.charAt(i); // 遍歷每個(gè)字符
if (c >= 0 && c <= 255 && c != 13 && c != 10 && c != 32) { // 若為英文 //空格 回車(chē) 換行 get請(qǐng)求時(shí)單獨(dú)編碼
result.append(c); // 直接拼接
} else { // 若為 中文
byte[] b = new byte[0];
try {
b = Character.toString(c).getBytes("UTF-8");
} catch (Exception ex) {
Log.e("EncodeTools", ex.toString());
}
for (int j = 0; j < b.length; j++) {
int k = b[j];
if (k < 0)
k += 256;
if(c==10||c==13){
result.append("%"+"0"
+ Integer.toHexString(k).toUpperCase(
Locale.getDefault()));
}else{
result.append("%"
+ Integer.toHexString(k).toUpperCase(
Locale.getDefault()));
}
}
}
}
return result.toString();
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。