URL 및 JSON 데이터용 이스케이프 문자 유틸리티 – Java 프로젝트에서 자유롭게 사용
게시 됨: 2021-11-19
Java에서 이스케이프 문자는 무엇입니까?
주로 이스케이프 문자는 which replaces existing character
를 런타임에 오류가 발생하지 않고 가장 잘 작동하는 new & provided character
로 대체하는 문자입니다.
또한 시스템/프로세스 간 전송을 위해 필요합니다. 즉, C++, Java 등의 프로그래밍 언어에서 동일한 문자가 작동합니다.
이 튜토리얼에서는 두 가지 Escape Character Utilities를 살펴볼 것입니다.
- URLEscapeUtil
- JSONEscapeUtil
또한 이 튜토리얼은 다음과 같은 질문이 있는 경우 도움이 될 것입니다.
- 문자열의 Java 이스케이프 문자
- HTML에서 이스케이프 처리해야 하는 문자
- 자바에서 이스케이프 문자는 무엇을 의미합니까?
- 문자열의 Java 이스케이프 문자
- Java용 문자열을 어떻게 이스케이프합니까?
- 예제가 있는 Java의 이스케이프 시퀀스
시작하자:
- CrunchifyEscapeCharUtility.java 클래스 생성
- crunchifyURLEscapeUtil(String s) 메소드 생성 – 제공된 URL에 이스케이프 문자가 포함된 String 반환
- crunchifyJSONEscapeUtil(String s) 메소드 생성 – 제공된 JSON에서 이스케이프 문자가 포함된 String 반환
- Main()에서 –
- 파일에서 JSON 데이터를 읽습니다.
- 파일 이름 제공:
Crunchify_Escape_Util.txt
-
java.net.URLEncoder
를 사용하여 URL 이스케이프 문자를 추가합니다.
Java에서 문자열을 인코딩할 때 다음 규칙이 적용됩니다.

Crunchify_Escape_Util.txt
파일 내용입니다. 랩톱/데스크톱에 넣고 프로그램에서 경로 위치를 업데이트하십시오.
1 2 3 4 5 6 7 8 9 10 |
{ "founder" : "App Shah" , "blogURL" : "https://crunchify.com" , "twitter" : "https://twitter.com/Crunchify" , "social" : { "facebook" : "http://facebook.com/Crunchify" , "pinterest" : "https://www.pinterest.com/Crunchify/crunchify-articles”, " rss ": " https : //crunchify.com/feed/" } } |
옵션-1: 다음은 완전한 Java 예제입니다.
- 우리 고유의 Escape JSON 및 URL 메소드를 작성하십시오.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
package crunchify . com . tutorials ; import java . io . BufferedReader ; import java . io . FileReader ; import java . io . IOException ; import java . net . URLEncoder ; import java . nio . charset . StandardCharsets ; import java . text . StringCharacterIterator ; /** * @author Crunchify.com * Version: 1.0 * Program: Escape Character Utility for URL and JSON data - Feel free to use in your Java Project. */ public class CrunchifyEscapeCharUtility { public static void main ( String [ ] args ) { // URL Escape Utility String crunchifyURL = "https://crunchify.com/this is test" ; crunchifyLog ( "Sample URL: " + crunchifyURL ) ; crunchifyLog ( "Escaped URL: " + crunchifyURLEscapeUtil ( crunchifyURL ) ) ; // JSON Escape Utility // We will read file first and then we will do escape char on that StringBuilder jsonData = new StringBuilder ( ) ; BufferedReader crunchifyBufferReader = null ; try { String crunchifyLine ; crunchifyBufferReader = new BufferedReader ( new FileReader ( "/Users/app/Downloads/Crunchify_Escape_Util.txt" ) ) ; while ( ( crunchifyLine = crunchifyBufferReader . readLine ( ) ) ! = null ) { jsonData . append ( crunchifyLine ) . append ( "\n" ) ; } // IOException: Signals that an I/O exception of some sort has occurred. // This class is the general class of exceptions produced by failed or interrupted I/O operations. } catch ( IOException exception ) { exception . printStackTrace ( ) ; } finally { try { if ( crunchifyBufferReader ! = null ) crunchifyBufferReader . close ( ) ; } catch ( IOException ex ) { ex . printStackTrace ( ) ; } } // Let's print raw JSON file data crunchifyLog ( "\n Sample JSON: " + jsonData . toString ( ) . toString ( ) ) ; // Let's print data after escaping JSON strings crunchifyLog ( "Escaped JSON: " + crunchifyJSONEscapeUtil ( jsonData . toString ( ) . toString ( ) ) ) ; } // Used to ensure that HTTP query strings are in proper form, by escaping special characters such as spaces. // Translates a string into application/x-www-form-urlencoded format using a specific encoding scheme public static String crunchifyURLEscapeUtil ( String crunchifyURL ) { String crunchifyNewURL ; // UTF_8: Eight-bit UCS Transformation Format. crunchifyNewURL = URLEncoder . encode ( crunchifyURL , StandardCharsets . UTF_8 ) ; return crunchifyNewURL ; } // JSON Escape Utility public static String crunchifyJSONEscapeUtil ( String crunchifyJSON ) { // StringBuilder(): Constructs a string builder with no characters in it and an initial capacity of 16 characters. final StringBuilder crunchifyNewJSON = new StringBuilder ( ) ; // StringCharacterIterator class iterates over the entire String StringCharacterIterator crunchifyIterator = new StringCharacterIterator ( crunchifyJSON ) ; // current(): Implements CharacterIterator.current() for String. char crunchifyChar = crunchifyIterator . current ( ) ; // DONE = \\uffff (not a character) while ( crunchifyChar ! = StringCharacterIterator . DONE ) { if ( crunchifyChar == '\"' ) { crunchifyNewJSON . append ( "\\\" "); } else if (crunchifyChar == '\t') { crunchifyNewJSON.append(" \ \ t "); } else if (crunchifyChar == '\f') { crunchifyNewJSON.append(" \ \ f "); } else if (crunchifyChar == '\n') { crunchifyNewJSON.append(" \ \ n "); } else if (crunchifyChar == '\r') { crunchifyNewJSON.append(" \ \ r "); } else if (crunchifyChar == '\\') { crunchifyNewJSON.append(" \ \ \ \ "); } else if (crunchifyChar == '/') { crunchifyNewJSON.append(" \ \ / "); } else if (crunchifyChar == '\b') { crunchifyNewJSON.append(" \ \ b " ) ; } else { // Nothing matched - just as text as it is. // next(): Implements CharacterIterator.next() for String. crunchifyNewJSON . append ( crunchifyChar ) ; } crunchifyChar = crunchifyIterator . next ( ) ; } return crunchifyNewJSON . toString ( ) ; } // Simple log utility private static void crunchifyLog ( String crunchifyData ) { System . out . println ( crunchifyData ) ; } } |
Eclipse 콘솔 출력:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Sample URL : https : //crunchify.com/this is test Escaped URL : https % 3A % 2F % 2Fcrunchify.com % 2Fthis + is + test Sample JSON : { "founder" : "App Shah" , "blogURL" : "https://crunchify.com" , "twitter" : "https://twitter.com/Crunchify" , "social" : { "facebook" : "http://facebook.com/Crunchify" , "pinterest" : "https://www.pinterest.com/Crunchify/crunchify-articles”, " rss ": " https : //crunchify.com/feed/" } } Escaped JSON : { \ n \ " founder \ " : \ " App Shah \ " , \ n \ " blogURL \ " : \ " https : \ / \ / crunchify . com \ " , \ n \ " twitter \ " : \ " https : \ / \ / twitter . com \ / Crunchify \ " , \ n \ " social \ " : { \ n \ " facebook \ " : \ " http : \ / \ / facebook . com \ / Crunchify \ " , \ n \ " pinterest \ " : \ " https : \ / \ / www . pinterest . com \ / Crunchify \ / crunchify - articles ” , \ n \ " rss \ " : \ " https : \ / \ / crunchify . com \ / feed \ / \ " \ n } \ n } \ n Process finished with exit code 0 |
옵션-2: Apache Common의 commons-text 종속성 사용
- Maven의 pom.xml 종속성 추가
1 2 3 4 5 |
< dependency > < groupId > org . apache . commons < / groupId > < artifactId > commons - text < / artifactId > < version > 1.9 < / version > < / dependency > |
완전한 코드:
- 클래스 생성: CrunchifyEscapeJSONTutorial.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
package crunchify . com . java . tutorials ; import org . apache . commons . text . StringEscapeUtils ; /** * @author Crunchify.com * Program: In Java How to Escape JSON? Simple Tutorial using Apache Commons Library. */ public class CrunchifyEscapeJSONTutorial { public static void main ( String [ ] args ) { // StringEscapeUtils: Escapes and unescapes Strings for Java, Java Script, HTML and XML. // #ThreadSafe# // This code has been adapted from Apache Commons Lang 3.5. String crunchifyHTML = "{\n" + " \"founder\": \"App Shah\",\n" + " \"blogURL\": \"https://crunchify.com\",\n" + " \"twitter\": \"https://twitter.com/Crunchify\",\n" + " \"social\": {\n" + " \"facebook\": \"http://facebook.com/Crunchify\",\n" + " \"pinterest\": \"https://www.pinterest.com/Crunchify/crunchify-articles”,\n" + " \"rss\": \"https://crunchify.com/feed/\"\n" + " }\n" + "}" ; // escapeJson: Escapes the characters in a String using Json String rules. // Escapes any values it finds into their Json String form. Deals correctly with quotes and control-chars (tab, backslash, cr, ff, etc.) // So a tab becomes the characters '\\' and 't'. // The only difference between Java strings and Json strings is that in Json, forward-slash (/) is escaped. String crunchifyResult = StringEscapeUtils . escapeJson ( crunchifyHTML ) ; crunchifyPrintUtils ( crunchifyResult ) ; } private static void crunchifyPrintUtils ( String crunchifyResult ) { System . out . println ( crunchifyResult ) ; } } |
IntelliJ IDEA 결과:
우리는 지난 2년 동안 IntelliJ IDEA로 이전했습니다. 다음은 콘솔 결과입니다.

1 2 3 |
{ \ n \ " founder \ " : \ " App Shah \ " , \ n \ " blogURL \ " : \ " https : \ / \ / crunchify . com \ " , \ n \ " twitter \ " : \ " https : \ / \ / twitter . com \ / Crunchify \ " , \ n \ " social \ " : { \ n \ " facebook \ " : \ " http : \ / \ / facebook . com \ / Crunchify \ " , \ n \ " pinterest \ " : \ " https : \ / \ / www . pinterest . com \ / Crunchify \ / crunchify - articles \ u201D , \ n \ " rss \ " : \ " https : \ / \ / crunchify . com \ / feed \ / \ " \ n } \ n } Process finished with exit code 0 |
이 Java 응용 프로그램을 실행하는 데 문제가 있으면 알려주십시오.