A lightweight IDE for java, designed primarily for students

learn more… | top users | synonyms

0
votes
0answers
44 views

Private int getChoice(int lower, int upper)?

*So Basically im stuck trying to write the code that returns the choice of the user. ALSO if i need to Declare or write anything else in the code above can you please tell me? Much Appreciated. This ...
-1
votes
3answers
32 views

Compile error: Incompatible operand types java.lang.String and char [closed]

import java.io.*; import hsa.Console; import java.awt.*; public static void main(String[] args) throws IOException { c = new Console(); String sentence; String encrypt = ...
0
votes
1answer
30 views

Need help fixing a try, catch error

I am trying to write a method that prints information into an array. the directions are: Create a second method for WordPath: makeWordArray that takes a String file name as input, and it returns ...
0
votes
1answer
53 views

How do I get a loop to read through a String and check if the characters of the String are equal to the method?

The assignment asks that a method returns the value true if a given character is a vowel, and otherwise returns false. Then to test that method by asking the user for a String, and checking each ...
0
votes
1answer
55 views

Need help changing a button background

I am writing a program a lot like connect four and need to change the background of 4 buttons when a certain word is spelled (TOOT or OTTO). Currently my code is not changing the background. Any help ...
0
votes
0answers
83 views

Piping (redirecting input from a text file) into a Java program using DrJava

I'm piping a text file into a java program. This is what the text file "input.txt" holds: 4 5 That is, the numbers 4 and 5 in seperated lines. I want the program to read those numbers and print ...
0
votes
1answer
123 views

Why won't drjava allow me to create a jar file?

I'm making a JApplet and need to make a JAR file to connect to a .htm file with the applet tag. The simple solution I could think of was to use the tool in drjava that says "Create Jar File From ...
0
votes
1answer
39 views

DrJava set environmental variable

I'm using DrJava for a simple java project and but need to set the environment variable R_HOME. Can somebody tell me how to do this? I can do it in the command line and test it using: String ...
0
votes
1answer
65 views

Cant import Font in Eclipse but can import in Dr. Java

So i have this code File fontFile = new File("FrizQuadrataTT.ttf");; FileInputStream in = new FileInputStream(f); Font dFont = Font.createFont(Font.TRUETYPE_FONT, in); Font f1 = ...
1
vote
1answer
90 views

Close what is already already running when running in eclipse

i was wondering if in eclipse there is a way for eclipse, when you press the play button(run), it closes the already running program. For example, if anyone has every used Dr. Java, when you click run ...
1
vote
1answer
116 views

in DrRacket, DrJava, DrPython, what does “Dr” stand for? [closed]

Currently there are some IDEs for some programming languages like DrRacket (DrScheme), DrJava and DrPython. Anyone knows What does the prefix "Dr" stand for?
-4
votes
1answer
41 views

I am confuse on with where to start with this method? [closed]

I am having trouble with my explore method() I have to create a picture whose height is the max of the heights, and width is the sum of the widths of the stored pictures.The pictures in the Album ...
0
votes
0answers
106 views

NoSuchMethodException when calling constructor

Ok I've been working with this for a couple days and I can't seem to figure out the problem. I would consider myself to be reasonably proficient in Java. I have a directory which contains the ...
-2
votes
1answer
143 views

Nested for loops in java Forwards and backwards [closed]

I understand usually the first for loop is how many lines. I need to create a result to look like this 1 1 2 1 ...
0
votes
4answers
152 views

Why won't my loop stop; seemingly despite boolean expression [closed]

So my program runs and draws a row of diamonds starting at the top right. It then moves down a row and repeats. It SHOULD stop at 4 rows (due to canvas size) but it won't! First for statement draws ...
1
vote
3answers
175 views

Why won't my for loop stop; despite a boolean expression?

The very last for loop listed (int variables n and o).. I'm very new to any type of programming and in our introductory course we use Dr Java and some Basic media stuff to make what is essentially a ...
3
votes
3answers
260 views

Why is drJava throwing me an error here on my String?

I know this may be a really dumb question, but I'm testing out the Interactions pane in drJav. I create a String variable, then try to do .length on it: String fish; String[] hooo; hooo.length ...
-1
votes
3answers
678 views

Please help me finish my DrJava code. I'm confused on how to finish it [closed]

Design and implement an application that reads a string from the user, then determines and prints the number of vowels and consonants which appear in the string. Use a switch statement inside a loop. ...
0
votes
0answers
214 views

What does an illegal class literal mean when trying to run a program?

I have created a project in Dr. Java which after compiling can automatically be converted into a Jar file to then converted into an .exe however I keep getting this error: Illegal class literal ...
-1
votes
1answer
131 views

why when trying to create a jar file my cmd says it cannot recognize the command?

I am unable to to get my already complied and saved .java file will not be complied in the cmd and it will not allow me to create a .jar file because the terminal is telling me'jar' is not a ...
1
vote
2answers
188 views

Beginner in Java - Controlling output - Generating Asterix

I am having difficulties with completing this program. I am trying to make a program that creates asteriks, but then makes it into a triangle. This is what I have already. public class 12345 { ...
3
votes
1answer
97 views

Addition method causing IDE crash, no error code

For my assignment I am to create 5 Classes in a hierarchy that extends Number. I am to create methods of addition subtraction multiplication and devision for each of the classes that has two ...
3
votes
1answer
548 views

NullPointerException with JFrame

At the moment all I want this program to do is run without any compile errors. Basically, what I need it to do is open the frame and then when the frame is selected, if I press the up arrow key it ...