I'm trying to prototype some code using NetworkTables on my PC, without needing a cRIO. However, when I run it, I get an exception pointing to the following line in edu.wpi.first.wpilibj.networktables.ConnectionMana ger.java
Code:
server = (ServerSocketConnection) Connector.open("socket://:" + PORT);
I'm assuming it's because the NetworkTable code was targeted for the robot and JavaME. Is there some way to run this code on my computer, like a JavaME SDK, or emulator, or something?