Is there something like python\'s interactive REPL mode, but for Java? So that I can, for example, type InetAddress.getAllByName( localHostName ) in a window, a
InetAddress.getAllByName( localHostName )
Most IDE's have a window called something like "immediate mode" that will allow you to evaluate java code on the fly.