Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

HI guys,

I have a URL and I want to embed it in the body of a mailto. Till now, I've tried 2 methods to encode the URL and both of them did not give me good results:

URLEncoder - this gave me plus signs in the e-mail message since apparently URLEncoder is appropriate for query parameters only.

org.apache.commons.httpclient.URI - this doesn't give me the complete URL. It gives me the same results as I had explained in a post earlier here: Escape & symbol in MailTo

What can I do?

Thanks :) Krt_Malta

share|improve this question
Can you please be more explicit on the URL returned with the 2 methods you tried an the original URL? – djondal Mar 13 '11 at 19:01

2 Answers

How about using URIUtil from httpclient?

URIUtil.encodeQuery(strUrl, "UTF-8");

Encoding the following address mailto:jo han.sjoberg@m.com gives mailto:jo%20han.sj%C3%83%C2%B6berg@m.com

Technically though, both + and %20 are acceptable encoding for a whitespace.

share|improve this answer

Since spaces are converted to +, would it be sufficient to just replace all instances of + with %20 in the body?

mailto: ?subject=Look at this link&body=Check%20out%20this%20too%20http://localhost:9001/view/shopindex/display?keyword=test%26searchPostcode=Postcode"

Demo

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.