Java URLEncoder は、HTML フォームのエンコードをサポートするユーティリティ クラスです。 Java の URLEncoder クラス ユーティリティを使用すると、HTML の形式の信頼性と安定性が高まります。ユーザーが get メソッドを呼び出すたびに、エンコーダーは URL の末尾に特殊文字、値、パラメーターを追加します。これにより、ある意味 URL が認証されなくなります。また、値には特殊文字が使用されており、さらに HTML のみを使用してすべての操作をスムーズに処理します。 Java URLEncoder が定義されたユーティリティ クラスとともに存在する場合、HTML に完全に依存することは決して良い習慣ではありません。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
構文:
public static String encode(String st, String enc1)throws UnsupportedEncodingException
構文フローは、パラメーターが次のようになります:
URLEncoder は、HTML エンコーディングに使用される Java クラスのユーティリティです。 URLEncoder の Java ユーティリティ クラスの存在が文字列変換のアクティビティの種類を拡張するためにスムーズに機能する場合、小さくて単純なメソッド呼び出しであっても、毎回 HTML エンコードを使用することは望ましくないアクティビティです。
これは、文字列とその文字解析およびエンコードからの変換、特殊な文字列要素のデコードに関して、最も安全で信頼できるユーティリティ クラスの 1 つと考えられています。また、組み込みの機能も利用します。この機能は、文字列を必要な形式に変換し、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.
以上がJava URLエンコーダの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。