Converting x-www-form-urlencoded Data : HttpURLConnection « Network Protocol « Java
- Java
- Network Protocol
- HttpURLConnection
Converting x-www-form-urlencoded Data
import java.net.URLEncoder;
public class Main {
public static void main(String[] argv) throws Exception {
String line = URLEncoder.encode("name1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
}
}
Related examples in the same category