Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to do something like:

http://url.com/page?link=http://otherpage.com/something?action=action&id=6

but of course I can't because it would confuse everything (which ? would it consider as "right" and which &).

Solution? Java tip?

share|improve this question
Maybe try urlencoding? – pajton Mar 30 '11 at 10:37

1 Answer

up vote 1 down vote accepted

You should url encode the variable.

P.s. What do you mean with "java tip"?

share|improve this answer
I mean is there a Java function to encode the variable. – gotch4 Mar 30 '11 at 10:40
2  
Yes: download.oracle.com/javase/1.5.0/docs/api/java/net/…, java.lang.String) – Gerben Jacobs Mar 30 '11 at 10:41

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.