使用becker.jar作为外部jar运行程序时,如何解决NullPointerException错误?

时间:2018-12-31 02:17:10

标签: java eclipse nullpointerexception karel

我正在为正在参加的课程设置程序。提供了所有代码,并且我已将所有内容配置到Eclipse中。我还必须在库-> Classpath中将plot_ly( x = ~x, y = ~y + rnorm(10)) %>% layout( xaxis = list(tickfont = list(size = 15)), yaxis = list(titlefont = list(size = 25), title = "test")) 用作外部jar文件。当我运行程序时,发生关于becker.jar的错误。

Here is the picture of the jar and class folders on the build pathj

我已经尝试过将becker.jar更改为modulepath而不是classpath,但是Eclipse无法找到该文件。我还尝试过重新安装NullPointerException,并为项目重做整个设置。

这是我要设置的代码:

becker.jar

运行时出现此错误:

import becker.robots.*;

/* 
Starting Template:
This file was created in order to provide you with a pre made 
'starter' program
 */

public class Starting_Template extends Object {
    public static void main(String[] args) {
        City toronto = new City();
        Robot jo = new Robot(toronto, 3, 0, Direction.EAST, 0);
        new Thing(toronto, 3, 2);


        jo.move();
         jo.turnLeft();
    }   
}

1 个答案:

答案 0 :(得分:3)

这是一个错误。例如参见https://issues.jboss.org/browse/PLANNER-255?_sscc=t-becker.jar与它无关。