Read float number from a Socket : Socket « Network « Java Tutorial






import java.io.DataInputStream;
import java.net.Socket;

public class Main {
  public static void main(String[] args) throws Exception {
    Socket sock = new Socket(args[0], 1234);
    DataInputStream dis = new DataInputStream(sock.getInputStream());
    float f = dis.readFloat();
    System.out.println("PI=" + f);
    dis.close();
    sock.close();
  }
}








19.9.Socket
19.9.1.java.net.Socket
19.9.2.Create a socket
19.9.3.Create Socket by IP address and port number
19.9.4.Display Socket InetAddress, Port, LocalPort and Local address
19.9.5.Socket Info
19.9.6.Get InputStream and OutputStream from Socket
19.9.7.Read float number from a Socket
19.9.8.Read Object from Socket
19.9.9.A Thin SMTP Client
19.9.10.Get internet address from connected socket client
19.9.11.Transfer a file via Socket
19.9.12.Cipher Socket