取消转义/解码 cookie 中设置的电子邮件地址
我已将电子邮件地址存储在 cookie 中,并将其发送到 google appengine 上的 jsp 文件进行验证。 @
作为 %40
出现。我需要将其恢复为 @
,并转换可能已编码的任何其他特殊字符。 appengine 是否有可用的类来处理此转换?
I've stored an email address in a cookie, and I'm sending it to a jsp file on google appengine to be verified. The @
is coming through as %40
. I need to get it back to an @
, and convert any other special chars that might have been encoded. Are there classes available through appengine that deal with this conversion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 URLDecoder 和 URLEncoder:
http://download.oracle .com/javase/6/docs/api/java/net/URLDecoder.html
查看JRE 白名单 它们都很好用。
Look at URLDecoder and URLEncoder:
http://download.oracle.com/javase/6/docs/api/java/net/URLDecoder.html
Looking at the JRE whitelist they are both fine to use.