PageRenderTime 51ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/util/string/URLUTF8Encoder.java

https://github.com/xtreme-Kelvin-Wong/xtremeutil
Java | 120 lines | 68 code | 5 blank | 47 comment | 24 complexity | 045854645626f98f120b5ca184f26b92 MD5 | raw file
  1. package com.xtremelabs.xtremeutil.util.string;
  2. /**
  3. * Provides a method to encode any string into a URL-safe
  4. * form.
  5. * Non-ASCII characters are first encoded as sequences of
  6. * two or three bytes, using the UTF-8 algorithm, before being
  7. * encoded as %HH escapes.
  8. *
  9. * Created: 17 April 1997
  10. * Author: Bert Bos <bert@w3.org>
  11. *
  12. * URLUTF8Encoder: http://www.w3.org/International/URLUTF8Encoder.java
  13. *
  14. * Copyright � 1997 World Wide Web Consortium, (Massachusetts
  15. * Institute of Technology, European Research Consortium for
  16. * Informatics and Mathematics, Keio University). All Rights Reserved.
  17. * This work is distributed under the W3C� Software License [1] in the
  18. * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
  19. * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  20. * PURPOSE.
  21. *
  22. * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
  23. */
  24. public class URLUTF8Encoder
  25. {
  26. final static String[] hex = {
  27. "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
  28. "%08", "%09", "%0a", "%0b", "%0c", "%0d", "%0e", "%0f",
  29. "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17",
  30. "%18", "%19", "%1a", "%1b", "%1c", "%1d", "%1e", "%1f",
  31. "%20", "%21", "%22", "%23", "%24", "%25", "%26", "%27",
  32. "%28", "%29", "%2a", "%2b", "%2c", "%2d", "%2e", "%2f",
  33. "%30", "%31", "%32", "%33", "%34", "%35", "%36", "%37",
  34. "%38", "%39", "%3a", "%3b", "%3c", "%3d", "%3e", "%3f",
  35. "%40", "%41", "%42", "%43", "%44", "%45", "%46", "%47",
  36. "%48", "%49", "%4a", "%4b", "%4c", "%4d", "%4e", "%4f",
  37. "%50", "%51", "%52", "%53", "%54", "%55", "%56", "%57",
  38. "%58", "%59", "%5a", "%5b", "%5c", "%5d", "%5e", "%5f",
  39. "%60", "%61", "%62", "%63", "%64", "%65", "%66", "%67",
  40. "%68", "%69", "%6a", "%6b", "%6c", "%6d", "%6e", "%6f",
  41. "%70", "%71", "%72", "%73", "%74", "%75", "%76", "%77",
  42. "%78", "%79", "%7a", "%7b", "%7c", "%7d", "%7e", "%7f",
  43. "%80", "%81", "%82", "%83", "%84", "%85", "%86", "%87",
  44. "%88", "%89", "%8a", "%8b", "%8c", "%8d", "%8e", "%8f",
  45. "%90", "%91", "%92", "%93", "%94", "%95", "%96", "%97",
  46. "%98", "%99", "%9a", "%9b", "%9c", "%9d", "%9e", "%9f",
  47. "%a0", "%a1", "%a2", "%a3", "%a4", "%a5", "%a6", "%a7",
  48. "%a8", "%a9", "%aa", "%ab", "%ac", "%ad", "%ae", "%af",
  49. "%b0", "%b1", "%b2", "%b3", "%b4", "%b5", "%b6", "%b7",
  50. "%b8", "%b9", "%ba", "%bb", "%bc", "%bd", "%be", "%bf",
  51. "%c0", "%c1", "%c2", "%c3", "%c4", "%c5", "%c6", "%c7",
  52. "%c8", "%c9", "%ca", "%cb", "%cc", "%cd", "%ce", "%cf",
  53. "%d0", "%d1", "%d2", "%d3", "%d4", "%d5", "%d6", "%d7",
  54. "%d8", "%d9", "%da", "%db", "%dc", "%dd", "%de", "%df",
  55. "%e0", "%e1", "%e2", "%e3", "%e4", "%e5", "%e6", "%e7",
  56. "%e8", "%e9", "%ea", "%eb", "%ec", "%ed", "%ee", "%ef",
  57. "%f0", "%f1", "%f2", "%f3", "%f4", "%f5", "%f6", "%f7",
  58. "%f8", "%f9", "%fa", "%fb", "%fc", "%fd", "%fe", "%ff"
  59. };
  60. /**
  61. * Encode a string to the "x-www-form-urlencoded" form, enhanced
  62. * with the UTF-8-in-URL proposal. This is what happens:
  63. *
  64. * <ul>
  65. * <li><p>The ASCII characters 'a' through 'z', 'A' through 'Z',
  66. * and '0' through '9' remain the same.
  67. *
  68. * <li><p>The unreserved characters - _ . ! ~ * ' ( ) remain the same.
  69. *
  70. * <li><p>The space character ' ' is converted into a plus sign '+'.
  71. *
  72. * <li><p>All other ASCII characters are converted into the
  73. * 3-character string "%xy", where xy is
  74. * the two-digit hexadecimal representation of the character
  75. * code
  76. *
  77. * <li><p>All non-ASCII characters are encoded in two steps: first
  78. * to a sequence of 2 or 3 bytes, using the UTF-8 algorithm;
  79. * secondly each of these bytes is encoded as "%xx".
  80. * </ul>
  81. *
  82. * @param s The string to be encoded
  83. * @return The encoded string
  84. */
  85. public static String encode(String s)
  86. {
  87. StringBuffer sbuf = new StringBuffer();
  88. int len = s.length();
  89. for (int i = 0; i < len; i++) {
  90. int ch = s.charAt(i);
  91. if ('A' <= ch && ch <= 'Z') { // 'A'..'Z'
  92. sbuf.append((char)ch);
  93. } else if ('a' <= ch && ch <= 'z') { // 'a'..'z'
  94. sbuf.append((char)ch);
  95. } else if ('0' <= ch && ch <= '9') { // '0'..'9'
  96. sbuf.append((char)ch);
  97. } else if (ch == ' ') { // space
  98. sbuf.append("%20");
  99. } else if (ch == '-' || ch == '_' // unreserved
  100. || ch == '.') {
  101. sbuf.append((char)ch);
  102. } else if (ch <= 0x007f) { // other ASCII
  103. sbuf.append(hex[ch].toUpperCase());
  104. } else if (ch <= 0x07FF) { // non-ASCII <= 0x7FF
  105. sbuf.append(hex[0xc0 | (ch >> 6)].toUpperCase());
  106. sbuf.append(hex[0x80 | (ch & 0x3F)].toUpperCase());
  107. } else { // 0x7FF < ch <= 0xFFFF
  108. sbuf.append(hex[0xe0 | (ch >> 12)].toUpperCase());
  109. sbuf.append(hex[0x80 | ((ch >> 6) & 0x3F)].toUpperCase());
  110. sbuf.append(hex[0x80 | (ch & 0x3F)].toUpperCase());
  111. }
  112. }
  113. return sbuf.toString();
  114. }
  115. }