The jcreator tag has no wiki summary.
7
votes
11answers
7k views
How do I create executable Java program?
I have programmed a Java Program in JCreator, everything is done, but I want to create an executable file from it, ie I dont want to have to run the program by loading the java classes and compiling ...
2
votes
3answers
57 views
Java error-message - 'void' type not allowed here, when calling a method that returns an integer
I've had a look throughout various forums and sites trying to find out where I'm going wrong but with no luck.
public void updatePlayerLabels()
{
if(currPlayer == 0)
...
2
votes
3answers
120 views
What's the difference between JCreator 4.5 and JCreator 5?
My school uses 4.5 and there doesn't seem to be any differences besides the version number
2
votes
1answer
286 views
Basic addition and subtraction with choices
Please help with this. I am very new to this, and I need this badly. I need to create a program where it lets you choose from addition or subtraction. This is my current program:
import ...
1
vote
2answers
787 views
How to compile a java project consisting of multiple files?
I have a java project which contains multiple classes spread out over multiple files.
How do i compile and get this to work ?
Can anyone suggest how to compile this using jCreator (without using a ...
1
vote
1answer
325 views
How to set the execution directory with JCreator (Pro)?
Is it possible, to execute a class in a specified directory?
I mean, a.class is in directory abc and i want it to be executed as if it were in directory xyz (directly from the IDE of JCreator).
0
votes
1answer
298 views
Need to have keyListener listening regardless of what focus is on Java
Im trying to make a hangman game. Im stuck on trying to listen for the keystroke. I want the user to be able to press a key and it will test to see if it is correct or not. I dont want to have to have ...
0
votes
3answers
324 views
Console output changing in java
I am writing a console app in java. Is there a way to change certain lines in the console to new values so it looks a bit dynamic or even clear the whole screen?
The console I am using is the one in ...
0
votes
2answers
579 views