Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have started taking the course Programming methodology(CS106A) available at stanford website. But I am not able to start the Stanford Karel in it.

I am using eclipse indigo classic 3.7.1 and Windows 7 64 bit OS..

I wrote the following code:

import stanford.karel.*;

public class CollectNewspaperKarel extends SuperKarel {
    // You fill in this part
    public void run(){
      move();
      move();
    }
}

It gives the error

Exception in thread "main" java.lang.NullPointerException
   at acm.program.Program.main(Program.java:917)
   at stanford.karel.Karel.main(Karel.java:202)

I followed some instructions given here but then got a blank screen as the output.

The assignment1 of stanford can be found here, and karel the robot of stanford is available here

share|improve this question
Hey, I found out that its running on jre6 but not on jre7.. Hence it works fine now.. But why is this happening??? – bhuwansahni Jan 8 '12 at 15:05

4 Answers

up vote 2 down vote accepted

You are getting that error because you are not using the Eclipse version provided by the Stanford University. For more detailed information,

Follow this Stanford Karel Setup Guide which will solve your problem.

share|improve this answer

hello bhuwansahni though I have written an answer before, but now I am writing the entire process to run Karel in any eclipse version.

  1. Create a new project in your Eclipse (File-----> New-----> Java Project)

  2. Load your assignment in the Created Project.

    step a:- Extract Assignment 1 in your desired folder.

    step b:- import the assignment (File-----> Import----->General-----> Files system-----> browse your folder and complete the importing.)

  3. Now run it in a different way (Run-----> Run Configurations-----> )

    Step a:- Under Java Applet Create New Configuration.

    Step b:- Under Main write the Main Class stanford.karel.Karel

    Picture for **Step b of Step 3] http://i.stack.imgur.com/0LpI3.jpg

    Step c:- Under (x)= Arguments in Program Arguments write code=CollectNewspaperKarel

    Picture for **Step b of Step 3] http://i.stack.imgur.com/alIss.jpg

    Step d:- Apply and Run

  4. Now Here comes the Karel the most Lovable Robot.

    Picture for **Step 3] URL:- (i.stack.imgur.com/d8SAa.jpg) put http:// in front to see it... as here I can't post more than two hyperlinks.

share|improve this answer
2  
Please don't use so much bold... it's very hard to read. Also, don't use a signature or salutation. – Andrew Barber Oct 9 '12 at 9:29
oh ok ok, I was unaware of this, as this is my first day here, thanks for your info. – Indranil Sinha Oct 9 '12 at 9:36

A lot the times this can be a result of not changing things like build settings. Check your configuration settings in eclipse.

share|improve this answer

Be sure to use JRE6 and not JRE7.

To do that, you do not need to uninstall JRE7 and install JR6. Just install JRE6. In Eclipse, go to Window --> Preferences --> Java --> Installed JREs. Add the path to JRE6. In Run configuration, select Alternate JRE to jre6.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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