Java URLEncoder는 HTML 양식 인코딩을 지원하는 유틸리티 클래스입니다. Java의 URLEncoder 클래스 유틸리티를 사용하면 HTML 형식이 더욱 안정적이고 안정적이 됩니다. 사용자가 get 메소드를 호출할 때마다 인코더는 URL 끝에 특수 문자, 값 및 매개변수를 추가하므로 어떤 방식으로든 URL이 인증되지 않습니다. 또한 값은 모든 작업을 원활하게 처리하기 위해 HTML만 사용하는 특수 문자를 사용합니다. 정의된 유틸리티 클래스와 함께 Java URLEncoder가 존재할 때 HTML에 전적으로 의존하는 것은 전혀 좋은 습관이 아닙니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
구문:
public static String encode(String st, String enc1)throws UnsupportedEncodingException
구문 흐름은 매개변수가 다음과 같은 방식으로 진행됩니다.
URLEncoder는 모든 HTML 인코딩에 사용되는 Java 클래스의 유틸리티입니다. 작고 간단한 메소드 호출의 경우에도 HTML 인코딩을 매번 사용하는 것은 URLEncoder의 Java 유틸리티 클래스가 원활하게 작동하여 문자열 변환을 위한 활동 유형을 향상시키는 경우 원하지 않는 활동입니다.
문자열과 문자 구문 분석 및 인코딩, 특수 문자열 요소 디코딩의 변환과 관련하여 가장 안전하고 신뢰할 수 있는 유틸리티 클래스 중 하나로 간주됩니다. 또한 문자열을 필요한 형식으로 변환하는 데 광범위하게 사용되는 내장 기능을 사용하고 URLEncoder를 사용하여 문자열을 인코딩할 때 해당 문자열에 적용되는 일부 행동 강령 또는 규칙은 다음과 같습니다.
예를 통해 문자열 인코딩에 따라야 할 UTF 형식 표준의 필요성을 명확히 알 수 있습니다. 즉, 특수 문자 및 공백과 같은 일부 값을 포함하는 일부 매개변수 또는 값이 있는 경우 다음 예를 통해 설명합니다.
다음은 Java urlencoder의 예입니다.
This program is used to illustrate the URLEncoder utility of Java where the input string is given as the base url for the link and then a string query for retrieving the final string using UTF-8 as a conventional standard for encoding. Output is shown where one encoded string is without URL and the other with UTF-8 standard, which comprises the URL.
Code:
import java.io.UnsupportedEncodingException; import java.net.MalformedURLException; import java.net.URL; import java.net.URLEncoder; public class UrlEncoderJava { public static void main(String[] args) throws MalformedURLException, UnsupportedEncodingException { String baseurl = "https://www.educba.com/?q="; String query = "u@educba for educba"; System.out.println("Without encoding URL :"); URL url = new URL(baseurl + query); System.out.println(url); System.out.println("URL after encoding :"); url = new URL(baseurl + URLEncoder.encode(query, "UTF-8")); System.out.println(url); } }
Output:
This program is used to represent the encoded string which makes use of the standard Charsets of the UTF_8 to the string and then provides the entire encoded string as shown in the output after converting the URL link with the defined standard and Encoder class of java.
Code:
import java.net.URLEncoder; import java.nio.charset.StandardCharsets; import java.io.UnsupportedEncodingException; public class URLEncodingParsing { private static String encodingOfValue(String value) { try { return URLEncoder.encode(value, StandardCharsets.UTF_8.toString()); } catch (UnsupportedEncodingException ex) { throw new RuntimeException(ex.getCause()); } } public static void main(String[] args) { String baseUrl = "https://www.educba.com/search?q="; String query = "educba@Java@lang"; String encodedQuery = encodingOfValue(query); String completeUrl = baseUrl + encodedQuery; System.out.println(completeUrl); } }
Output:
URLEncoder in java is a utility class that provides aid for the HTML related forms to encode the special characters being provided for parsing. The UTF-8 standard recommended by W#C has enhanced the overall encoding method for encoding and conversion of the encoded string to the final string after parsing. Using this class for string encoding is a very reliable and secured form of coding; as always, making HTML is not preferred.
위 내용은 자바 URL 인코더의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!