//////////////////////////////////////////////////////////////////////////////// // SYSTcomm class. // //////////////////////////////////////////////////////////////////////////////// import java.io.*; class SYSTcomm extends ftpFunc { public void start(ftpState sessionState) { System.out.println("SYSTobj started!! "); // Indica o sistema em uso. try { sessionState.sendMesg.writeBytes("215 Java VM.\r\n"); sessionState.sendMesg.flush(); } catch (IOException e) { System.out.println(e); } } }