java. net. socket_java 与 .net 的socket通讯的建立

用java写服务端代码

import java.io.*;

import java.net.*;

public class test {

public test() {

}

public static final int PORT = 8080;

public static final String ip = "10.194.111.222";

public static void main(String[] args) throws IOException {

ServerSocket s = new ServerSocket(51,2,InetAddress.getByName(ip));

System.out.println("Started: " + s);

try {

// Blocks until a connection occurs:

Socket socket = s.accept();

try {

System.out.println(

"Connection accepted: "+ socket);

BufferedReader in =

new BufferedReader(

new InputStreamReader(

socket.getInputStream()));

// Output is automatically flushed

// by PrintWriter:

PrintWriter out =

new PrintWriter(

new BufferedWriter(

new OutputStreamWriter(

socket.getOutputStream())),true);

while (true) {

String str = in.readLine();

if (str.equals("END")) break;

System.out.println("Echoing: " + str);

out.println(str);

}

// Always close the two sockets...

} finally {

System.out.println("closing...");

socket.close();

}

} finally {

s.close();

}

}

}

.net写客户端代码

private void button2_Click(object sender, System.EventArgs e)

{

try

{

stSend = new Socket ( AddressFamily.InterNetwork ,

SocketType.Stream , ProtocolType.Tcp ) ;

//初始化一个Socket实例

IPEndPoint tempRemoteIP = new IPEndPoint(IPAddress.Parse("10.194.111.222"),51);

//根据IP地址和端口号创建远程终结点

EndPoint epTemp =  ( EndPoint ) tempRemoteIP;

stSend.Connect ( epTemp ) ;

}

catch ( Exception err)

{

string s = err.ToString();

}

}

posted on 2005-12-09 16:36 surffish 阅读(1094) 评论(0)  编辑  收藏

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值