📄 echoclienthelper2.java
字号:
import java.net.*;
import java.io.*;
/**
* This class is a module which provides the application logic
* for an Echo client using stream-mode socket.
* @author M. L. Liu
*/
public class EchoClientHelper2 {
static final String endMessage = ".";
private MyStreamSocket mySocket;
private InetAddress serverHost;
private int serverPort;
EchoClientHelper2(String hostName,
String portNum) throws SocketException,
UnknownHostException, IOException {
this.serverHost = InetAddress.getByName(hostName);
this.serverPort = Integer.parseInt(portNum);
//Instantiates a stream-mode socket and wait for a connection.
this.mySocket = new MyStreamSocket(this.serverHost,
this.serverPort);
/**/ System.out.println("Connection request made");
} // end constructor
public String getEcho( String message) throws SocketException,
IOException{
String echo = "";
mySocket.sendMessage( message);
// now receive the echo
echo = mySocket.receiveMessage();
return echo;
} // end getEcho
public void done( ) throws SocketException,
IOException{
mySocket.sendMessage(endMessage);
mySocket.close( );
} // end done
} //end class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -