Your best bet is probably http://www.javarepl.com/ but there are several other options:
If you require the interpreter to support Java syntax exactly, then ideone.com will let you evaluate arbitrary Java code.
If you want to evaluate Java snippets, you could use a Groovy interpreter. Java code is generally valid Groovy too, and Groovy doesn't force you to define a whole class. There's an online Groovy interpreter.
If you don't require the interpreter to be online, there's also the Eclipse scrap book, DrJava, and BeanShell2 which all allow Java to be interpreted.