private void initServer() {
try {
String port=pref.getValue(Preference.JDE_SERVER_PORT);
int portNum = Integer.parseInt(port);
new SzjdeServer(portNum).start();
} catch (Exception e) {
String errorMsg = VjdeUtil.getExceptionValue(e);
log.info(errorMsg);
}
}