加载中...
The Wayback Machine - https://sup1a9wrlpyh5li9ro.vcoronado.top/web/20111229080703/http://developer.android.com:80/reference/java/net/URLEncoder.html
public class

URLEncoder

extends Object
java.lang.Object
   ↳ java.net.URLEncoder

Class Overview

This class is used to encode a string using the format required by application/x-www-form-urlencoded MIME content type.

All characters except letters ('a'..'z', 'A'..'Z') and numbers ('0'..'9') and characters '.', '-', '*', '_' are converted into their hexadecimal value prepended by '%'. For example: '#' -> %23. In addition, spaces are substituted by '+'.

Summary

Public Methods
static String encode(String s, String charsetName)
Encodes s using the Charset named by charsetName.
static String encode(String s)
This method is deprecated. use encode(String, String) instead.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public static String encode (String s, String charsetName)

Since: API Level 1

Encodes s using the Charset named by charsetName.

public static String encode (String s)

Since: API Level 1

This method is deprecated.
use encode(String, String) instead.

Equivalent to encode(s, "UTF-8").