vote up 5 vote down star
2

I am quite new to java, and I would like to learn java just like python, with the interactive shell IPython.

I try a few a them, like beanshell, jython, jythonconsole, JyConsole... Almost all of them don't have the function of tab completion like ipython. Is there anything similar to that? Thank you.

flag

1  
+1 because I'm not sure whether such a shell exists, but it would be useful. (I nearly posted BeanShell before I took a moment to read the second paragraph.) – mmyers Jun 6 at 2:11

4 Answers

vote up 0 vote down

If you want an interactive option for use with java try using Dr Java or JGrasp, they both provide the same interactive option as does IDLE for python, plus being a fully based IDE with a debugger I prefer JGrasp to Dr Java. They also have a Dr Python so if you get used to Dr Java you can also use it with Python.

Also Dr Java has a feature in which you can select from beginner, intermediate, advanced and full Java in order to limit what you can do with the language as you learn it. I never use that feature as I dont see the point in restricting parts of the langaue but I guess some teachers utilize it while teaching there student.

link|flag
vote up 0 vote down check

I think I find a good enough alternative: JPype. JPype allows python programs having full access to java class libraries. With JPype and IPython, I can use all java functions while having very nice tab completion for the java classes.(After the class is imported though)

link|flag
vote up 2 vote down

You probably won't get much use out of using java interactively, as that language is strongly oriented toward compiling. The best route will probably just get a nice IDE, like eclipse, and get started with breakpoints and the debugger.

link|flag
I actually use Beanshell quite often, lately beanshell 2 (code.google.com/p/beanshell2). However, I have not found a variety with code completion. – Matthew Flaschen Jun 6 at 4:51
I didn't mean to say that its impossible, or even non-useful to use Java interactively. I have used and enjoy some C++ interpreters for various tasks. But because these languages are not designed with such use in mind, you don't get the same level of utility as you would with more interactive oriented languages like python. – TokenMacGuy Jun 6 at 13:10
If you tried beanshell, it extended java to be more scripting language like, in which you don't have to declare the variable type. There are much more advantages like closure, but I just started using that. – i-freaker Jun 6 at 15:06
vote up 0 vote down

what beanshell have you used ? the old one ? Look at this they claim to provide completion

link|flag
I am now using eclipse instead of netbean, since I am also coding other languages like python and c++. I just use beanshell from beanshell.org – i-freaker Jun 6 at 15:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.