2012年6月7日 星期四

Intermediate Java(58) - Finishing the Coding for the Instant Message Program


ClientTest.class:



import javax.swing.JFrame;

public class ClientTest {

public static void main(String[] args) {
Client olof;
olof = new Client("127.0.0.1"); → localhost試驗
olof.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
olof.startRunning();

}

}



沒有留言:

張貼留言