|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Cannot access MIDlet
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
{
}
|
|
#2
|
||||||
|
||||||
|
Re: Cannot access MIDlet
Is there a reason you are starting with a blank file, rather then the IterativeRobotTemplate?
|
|
#3
|
|||
|
|||
|
Re: Cannot access MIDlet
Actually, this is an IterativeRobotTemplateProject, I might have worded that poorly.
|
|
#4
|
|||
|
|||
|
Re: Cannot access MIDlet
This year you need to add three jars to your buildpath...
squawk.jar wpilibj.jar networktables-crio.jar Can you confirm that all three are apart of your build path, and that they are the 2013 version, not the 2012 version? Javax.microedition.midlet.mixlet lives in the squawk.jar file so if that is not apart of your build, then your linker wont be able to find it. Hope this helps, Kevin |
|
#5
|
|||
|
|||
|
Re: Cannot access MIDlet
Quote:
This issue is now resolved. For people who may have the same problem even after reading this, I went into Project Properties and added the squawk.jar under Java Sources Classpath. Then I edited ide-file-target.xml to look for squawk.jar in its classpath tag. Thank you so much, Christopher Heung |
|
#6
|
|||
|
|||
|
Re: Cannot access MIDlet
Great... glad it worked
Happy Programming, Kev |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|