I've never tried myself, but you should be able to pull out the SmartDashboard and NetworkTable classes from wpilib.
The source code is included in the sunspotfrcsdk folder if you have installed the FRC java plugins from 2013. Sources are zipped here on a windows machine:
Code:
%HOMEPATH%\sunspotfrcsdk\lib\wpilibj.src.zip
They should be located at the following locations respectively:
edu/wpi/first/wpilibj/smartdashboard
edu/wpi/first/wpilibj/networktables/
Alternatively, you could just include the whole wpilib jar file in your java desktop application. The following should get you everything you need:
Code:
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
You should be able to make calls to the SmartDashboard class in the same manner you would in your robot code. See
http://wpilib.screenstepslive.com/s/...manual-id=7932