我正在尝试开发一个eclipse插件。我的Socket IO服务器在java中实现如下:
DateFormat df = new SimpleDateFormat("yyyy");
Date yearOnReport = df.parse(startDateString);
Date threshold = df.parse("2006")
if (yearOnReport<threshold){
...\\Do some stuff
}
当我经常运行这个时,如果我运行它,因为eclipse应用程序客户端无法连接到服务器,这样可以正常运行。