This is the second year that I am the lead programmer for my team. I have used Java last year as well with no such problem as I am about to describe.
I followed the basic tutorials and got the wpilibj.jar classpath and all the FRC plugins downloaded. I am running Netbeans 7.2.1 and JDK 1.7 on my code.
I created a
blank file and tried to compile it and was given the error:
error: cannot access MIDlet
public class Main extends Iterative Robot
class file for javax.microedition.midlet.MIDlet not found
1 error
(insert ide-file-targets xml path): Compile failed; see the compiler error output for details.
BUILD FAILED
Code reference (not much to look at):
Code:
package edu.wpi.first.wpilibj.templates;
import edu.wpi.first.wpilibj.*;
public class Main extends IterativeRobot //error refers to this line
{
}