Benjamin Deutsch
Benjamin Deutsch

Reputation: 31

How do you quickly compile and run in BlueJ?

I've used IntelliJ and VSC before, both of which had nice one-button solutions to compile and run, even going as far as having keyboard shortcuts for it as well. But unfortunately, for reasons I'm not in the mood to get into right now, and cannot change, I have to use BlueJ for certain projects in my class.

Don't get me wrong, I actually do like using BlueJ on simpler and smaller projects with it's simple interface, but one thing that really limits the speed I work at is having to hit "Compile", right-clicking the tester class, clicking "void main", and then hitting "Okay", EVERY single time I want to test the code. It's sluggish and takes infinitely longer than one button or a keyboard shortcut.

Is there any way, external modification or otherwise, that I could have a simpler method for compiling and running code in BlueJ? Even saving on one or two of these clicks would be greatly appreciated.

Upvotes: 2

Views: 1348

Answers (1)

Kailash H
Kailash H

Reputation: 1

Compile does have a shortcut and it is ctrl + k and to close the window it is ctrl + w. Refer to the below link for other extensions that may be helpful https://www.bluej.org/extensions/extensions2.html Plus you can also use the codepad to test simple program lines.

Upvotes: 0

Related Questions