Two Laptop Bag
The moose likes Beginning Java and the fly likes email hyperlink Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "email hyperlink" Watch "email hyperlink" New topic
Author

email hyperlink

Chris Pat
Ranch Hand

Joined: Aug 27, 2005
Posts: 156
Hello
I am trying to construct within a servlet an email with a hyperlink made up of the components. What I cant seem to do is escape successfully and have the resulting string include the ""
I want to appear in the message bode <a href="serverNameAndURI">clickMe</a>
I have tried building it with StringBuffer but still cant get the " correct. Can someone help with the proper technique and syntax.
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56545
    
  14

In Java, quote characters within string literals are escaped with the backslash character (\).


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
Rahul Shilpakar
Ranch Hand

Joined: Aug 29, 2006
Posts: 132
you can write it as :

<blockquote>code:
<pre name="code" class="core"> <a href="\"serverNameAndURI\"">clickMe</a> </pre>
</blockquote>


Perform for today. Adapt for tomorrow.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: email hyperlink
 
Similar Threads
how to use command link in jsf
how to save data from vanishing during page navigation?
Rollover effects within HTML
how to add data in request object and pass it to next page?
passing html text in a java String object