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

How can I escape the @ symbol in javadoc? I am trying to use it inside a {@code} tag which is inside pre tags. I already tried the html escape & #64; sequence but that didn't work.

share|improve this question
Now it has started displaying fine after I adjusted some of the indentation inside the @{code} block! This was in Eclipse if it matters. – JayL Feb 18 '10 at 18:01
7  
Please remember to accept an answer! – leoger Mar 2 '12 at 0:29

4 Answers

up vote 42 down vote accepted

Use the {@literal} tag:

/**
 * This is how you can code an "at" symbol: {@literal @}
 */

The javadoc for this will read:

This is how you can code an "at" symbol: @

Of course, this will work for any characters, and is the "officially supported" way of displaying any "special" characters.

It is also the most straighforward - you don't need to know the hex code of the character, and you can read what you've typed!

share|improve this answer
+1, this seems to be the best solution – subes Dec 18 '11 at 15:20
+1 for specificity – Eddie B Dec 19 '12 at 10:09

@

http://forums.sun.com/thread.jspa?threadID=729598

share|improve this answer
this works fine with java6 but not with java5 – Santhosh Kumar T Mar 6 '10 at 6:02
This shows as literally in Eclipse. – Geoffrey Zheng Nov 16 '12 at 16:26

You got the general idea, try using the octal representation: @

share|improve this answer

Hey! Thank you for your answers.
Just to add a side note to the problem:

If you want to keep the identation from going away when you see your javadoc in a browser, instead of using the {@code } block you must use <pre> {@code } </pre>.

CumpZ

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.