博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】用perl写的单位电脑信息采集程序
阅读量:5274 次
发布时间:2019-06-14

本文共 2567 字,大约阅读时间需要 8 分钟。

perl,后来我又改过了增加了一些交互和数据库检测的功能。主要用于收集ipmac、姓名、房间,后来又加入了维修记录的功能。服务器端接受数据并存入数据库中。

 

代码如下:

主要用于收集ipmac、姓名、房间,后来又加入了维修记录的功能。服务器端接受数据并存入数据库中。 

############################# 

use strict; 

use Tk; 

use Encode; 

#SOCKE参数 

my $PF_INET = 2; 

my $port = 2345; 

my $remote_addr = pack('SnC4x8',$PF_INET,$port,192,168,138,228); 

my $SOCK_DGRAM = 2; 

#Frame 

my ($label_room, $label_name, $label_ctrl, $label_notice); 

#确定、取消 

my ($enter, $cancel); 

#房间、姓名变量 

my ($room, $name); 

$room = ''; 

$name = ''; 

#主界面 

my $mw = MainWindow->new(-title => hanzi('信息收集')); 

$mw->minsize(qw/200 100/); 

$mw->maxsize(qw/200 100/); 

#三个Frame 

$label_room = $mw->Frame( qw/-borderwidth 2 -relief groove/ )->pack( qw/-side top -fill both/ ); 

$label_name = $mw->Frame( qw/-borderwidth 2 -relief groove/ )->pack( qw/-side top -fill both/ ); 

$label_ctrl = $mw->Frame( qw/-borderwidth 2 -relief groove/ )->pack( qw/-side top -fill both/ ); 

#房间号码输入 

$label_room->Label(-text => hanzi('房间号码'))->pack(qw/-side left -expand 1/); 

$label_room->Entry(-textvariable => \$room, -relief => 'groove')->pack(qw/-side right -expand 1/); 

#姓名输入 

$label_name->Label(-text => hanzi('姓名'))->pack(qw/-side left -expand 1/); 

$label_name->Entry(-textvariable => \$name, -relief => 'groove')->pack(qw/-side right -expand 1/); 

#确定与重置 

$enter = $label_ctrl->Button(-text => hanzi('确定'), -command => \&enter)->pack(qw/-side left -expand 1/); 

$cancel = $label_ctrl->Button(-text => hanzi('重置'), -command => \&cancel)->pack(qw/-side right -expand 1/); 

#提示 

$label_notice = $mw->Label(-text => hanzi('欢迎使用'), -relief => 'groove', -background => '#FFFF99')->pack(qw/-side bottom -fill x/); 

MainLoop(); 

#汉字解码 

sub hanzi{ 

    return decode('gb2312', shift);     

#确定函数 

sub    enter{ 

    chomp($room); 

    chomp($name); 

    $room =~ s/^\s+//; 

    $name =~ s/^\s+//; 

    if($room eq '' or $name eq ''){ 

        $label_notice->configure(-text => hanzi('输入不能为空')) ; 

        return 0; 

    }#if 

    else{ 

        open(IPCF,'-|',"ipconfig -all"); 

        my ($mac_addr, $ip_addr, $out_buffer); 

        while(<IPCF>){ 

            chomp; 

            if($_ = ~s/(.*)(00(\-[0-9A-Z]{2}){5})(.*)/$2/){ 

                $mac_addr = join('', split(/-/,$_)); 

            } 

            if($_ = ~/IP Address/){ 

                $_ = ~s/(.*)([0-9]{3}(\.[0-9]{1,3}){3})(.*)/$2/; 

                $ip_addr = $_; 

            } 

        }#while 

        $out_buffer = $room."\t".$mac_addr."\t".$ip_addr."\t".encode('utf8', $name); 

        socket(UDP_CLIENT, $PF_INET, $SOCK_DGRAM, getprotobyname('udp')); 

        send(UDP_CLIENT, $out_buffer, 0, $remote_addr); 

        close(UDP_CLIENT); 

        close(IPCF); 

        $mw->destroy(); 

    }#else         

#重置函数 

sub cancel{ 

    $label_notice->configure(-text => hanzi('重置为空')); 

    $room = ''; 

    $name = ''; 

详细出处参考:http://www.jb51.net/article/15458.htm

转载于:https://www.cnblogs.com/schowen/p/3379578.html

你可能感兴趣的文章
如何设置映射网络驱动器的具体步骤和方法
查看>>
centos下同时启动多个tomcat
查看>>
Leetcode Balanced Binary Tree
查看>>
[JS]递归对象或数组
查看>>
linux sed命令
查看>>
湖南多校对抗赛(2015.03.28) H SG Value
查看>>
hdu1255扫描线计算覆盖两次面积
查看>>
hdu1565 用搜索代替枚举找可能状态或者轮廓线解(较优),参考poj2411
查看>>
程序存储问题
查看>>
优雅地书写回调——Promise
查看>>
AX 2009 Grid控件下多选行
查看>>
PHP的配置
查看>>
Struts框架----进度1
查看>>
Round B APAC Test 2017
查看>>
MySQL 字符编码问题详细解释
查看>>
Ubuntu下面安装eclipse for c++
查看>>
Windows 2003全面优化
查看>>
格而知之2:UIView的autoresizingMask属性探究
查看>>
我的Hook学习笔记
查看>>
js中的try/catch
查看>>