在Perl中进行网络编程通常使用Socket模块。以下是一个简单的例子:
use strict;
use warnings;
use IO::Socket::INET;
my $host = 'localhost';
my $port = 12345;
# 创建一个socket
my $socket = new IO::Socket::INET (
PeerAddr => $host,
PeerPort => $port,
Proto => 'tcp',
) or die "无法连接到服务器: $!\n";
print "连接成功\n";
# 发送数据到服务器
my $data = "Hello, World!";
$socket->send($data);
# 接收来自服务器的数据
my $response;
$socket->recv($response, 1024);
print "来自服务器的响应: $response\n";
# 关闭socket
$socket->close();
以上代码连接到本地主机的12345端口,并发送"Hello, World!"字符串到服务器。然后接收来自服务器的响应并打印出来。最后关闭socket连接。这只是一个简单的例子,实际中的网络编程可能会更加复杂和详细。