Java Socket编程

本文提供了一个简单的Java Socket编程示例,包括服务器端程序、应用客户端程序及Applet客户端程序的源代码。通过这些示例,读者可以了解如何创建Socket服务器、如何从服务器接收消息等基本操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

socket program example!

In this program, I develop an socket server running at port 5000.
Then I develop a Application client and a Applet Client program to
connect to the server and receive a message.This is very simple but
if import usage. We can alse transfer an serializable object in two
application by the same method.If you want to know more let me know


down load source

1. Server program source

// Server.java




/**
* This a Socket Server program
* @version 1.0 1999/12/27
* @author Huang Jian-chang
**/

import java.net.*;
import java.io.*;

public class Server
{
ServerSocket server;
DataOutputStream output;
Socket socket;
public Server (){
try{
// create a server on port 5000
server=new ServerSocket(5000);
// display interactive informaion
System.out.println("Server created.");
System.out.println("waiting for client to connect on...");
// waiting for client to connect on...
socket = server.accept();
// client connected
System.out.println("client connected.
Shutdown!");
output = new DataOutputStream(socket.getOutputStream());
output.writeUTF("Welcome to Server.Bye!");
output.close();
server.close();
}
catch(SocketException e){
System.out.println(e.toString());
e.printStackTrace();
System.exit(1);
}
catch(IOException e){
System.out.println(e.toString());
e.printStackTrace();
System.exit(1);
}
}

public static void main(String args[]){
Server game=new Server();
}
}




2. Application Client program source

// Client.java



/**
* This a Socket Client program
* @version 1.0 1999/12/27
* @author Huang Jian-chang
**/

import java.io.*;
import java.net.*;

public class Client {
public static void main(String args[]) {
try{
if (args.length != 1){
System.out.println("USAGE: java Client servername");
return;
}
String connectto= args[0];
Socket connection;
// connect to server
if(connectto.equals("localhost")){
connection=new Socket(InetAddress.getLocalHost(),5000);

}
else{
connection=new Socket(InetAddress.getByName(connectto),5000);
}
DataInputStream input=new DataInputStream(connection.getInputStream());

// read information from server
String info;
info = input.readUTF();
System.out.println(info);
connection.close();
}
catch(SecurityException e){
System.out.println("SecurityException when connecting Server!");
}
catch(IOException e){
System.out.println("IOException when connecting Server!");
}
}

}



JAVA天堂

3. Applet Client program source
// AppletClient.java



/**
* This a Socket Applet Client program
* @version 1.0 1999/12/27
* @author Huang Jian-chang
**/
import java.applet.*;
import java.awt.*;
import java.io.*;
import java.net.*;

public class AppletClient extends Applet {
String info="";
public void init(){
try{

String connectto = getCodeBase().getHost();
Socket connection;
// connect to server
if(connectto.equals("localhost")){
connection=new Socket(InetAddress.getLocalHost(),5000);

}
else{
connection=new Socket(InetAddress.getByName(connectto),5000);
}
DataInputStream input=new DataInputStream(connection.getInputStream()); JAVA天堂

// read information from server
info = input.readUTF();
System.out.println(info);
connection.close();
}
catch(SecurityException e){
System.out.println("SecurityException when connecting Server!");
info = e.toString();
}
catch(IOException e){
System.out.println("IOException when connecting Server!");
info = e.toString();
}
}
public void paint(Graphics g){
g.drawString(info,20,20);
}
}




Html File AppletClient.html :














code=AppletClient.class
width = 200
height = 200
>









4 steps to run the application
1. javac Server.java
2. javac Client.java
3. java Server
4. java Client localhost(or the computername in which the server is running)

! do the step 3 and 4 in two diffrent computer or Dos Commnand
来自:http://www.javah.net/wangluobiancheng/20070604/2278.html
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值