LOGO OA教程 ERP教程 模切知识交流 PMS教程 CRM教程 开发文档 其他文档  
 
网站管理员

编程源码:C#获取系统软硬件信息类介绍与实例

admin
2012年1月1日 2:32 本文热度 2611

所谓系统信息,就是计算机的软件硬件信息,硬件如cpu主频、网卡名称等,软件信息就如操作系统目录,用户目录等。在平常的编程中,我们往往要用到这些系统信息,比如我前面的字体查看器,如果要写个c#版,则首先要获得系统字体的安装目录。总之,读取系统信息对于编程还是很重要的,.net也不负所望,提供了很便利的方法,本文提供了四种方法来从各个方面对系统信息进行读取。


第一种方法:用systeminformation 类


systeminformation 提供静态方法和属性,它们可用于获取诸如 windows 显示元素大小、操作系统设置、网络可用性和系统中所安装硬件的性能等信息,这种方法侧重于操作系统(这里特指windows)的一些设置和状态。


第二种方法 :用environment 类


通过这种方法可检索的系统信息包括命令行参数、环境变量设置、调用堆栈的内容、上次系统引导以来的时间,以及公共语言运行库的版本等等,测重于使用这个类的应用程序所处的环境和状态,也有比较多的动态信息,比如开机启动后的毫秒数等等。


第三种方法 用registrykey 类


这种方法方法读取的也只能是静态的设置,不过比上面两种方法更加接近操作系统,因为值是直接从注册表中读取出来的,有好处也有不好的地方,好处就是基本上可以获得任何设置。不好的地方是不够便利,毕竟,检索注册表的键值不如直接调用方法来得方便。


第四种方法 用api函数


这种方法严格说来不是用c#来实现对系统信息的读取,因为它实际调用的是系统api。这种方法有更加有意义的地方,就在其对api功能的调用,因而我们可以做出更多的事情。这种方法也可以在java中依样画胡芦地用到。


下面讲一下程序结构:


//registrykey 类所需要的包:


using microsoft.win32;
//dllimport方法所需要的包:
using system.runtime.interopservices;
//stringbuilder所需要的包:
using system.text;
//声明api函数
[dllimport("kernel32")]
public static extern void getwindowsdirectory(stringbuilder windir,int count);
[dllimport("kernel32")]
public static extern void getsystemdirectory(stringbuilder sysdir,int count);
[dllimport("kernel32")]
public static extern void getsysteminfo(ref cpu_info cpuinfo);
[dllimport("kernel32")]
public static extern void globalmemorystatus(ref memory_info meminfo);
[dllimport("kernel32")]
public static extern void getsystemtime(ref systemtime_info stinfo);
//定义以下各结构
//定义cpu的信息结构
[structlayout(layoutkind.sequential)]
public struct cpu_info
{
public uint dwoemid;
public uint dwpagesize;
public uint lpminimumapplicationaddress;
public uint lpmaximumapplicationaddress;
public uint dwactiveprocessormask;
public uint dwnumberofprocessors;
public uint dwprocessortype;
public uint dwallocationgranularity;
public uint dwprocessorlevel;
public uint dwprocessorrevision;
}
//定义内存的信息结构
[structlayout(layoutkind.sequential)]
public struct memory_info
{
public uint dwlength;
public uint dwmemoryload;
public uint dwtotalphys;
public uint dwavailphys;
public uint dwtotalpagefile;
public uint dwavailpagefile;
public uint dwtotalvirtual;
public uint dwavailvirtual;
}
//定义系统时间的信息结构
[structlayout(layoutkind.sequential)]
public struct systemtime_info
{
public ushort wyear;
public ushort wmonth;
public ushort wdayofweek;
public ushort wday;
public ushort whour;
public ushort wminute;
public ushort wsecond;
public ushort wmilliseconds;
}
private void initsysinfodata()
{
//获取操作系统设置
lstsysinfo.items.add("计算机名 : " + systeminformation.computername );
lstsysinfo.items.add("是否已连接网络 : " + systeminformation.network );
lstsysinfo.items.add("用户域 : " + systeminformation.userdomainname );
lstsysinfo.items.add("当前线程用户名 : " + systeminformation.username );
lstsysinfo.items.add("启动方式 : " + systeminformation.bootmode );
lstsysinfo.items.add("菜单的字体 : " + systeminformation.menufont );
lstsysinfo.items.add("显示器的数目 : " + systeminformation.monitorcount );
lstsysinfo.items.add("鼠标已安装 : " + systeminformation.mousepresent );
lstsysinfo.items.add("鼠标按钮数 : " + systeminformation.mousebuttons);
lstsysinfo.items.add("是否交互模式 : " + systeminformation.userinteractive );
lstsysinfo.items.add("屏幕界限: " + systeminformation.virtualscreen );
}
public void initenvdata()
{

//获取程序运行的相关信息.
lstenv.items.add("命令行:"+ environment.commandline);
lstenv.items.add("命令行参数:"+ string.join(", ",environment.getcommandlineargs()));
lstenv.items.add("当前目录:"+ environment.currentdirectory);
lstenv.items.add("操作系统版本:"+ environment.osversion);
lstenv.items.add("系统目录:"+ environment.systemdirectory);
lstenv.items.add("堆栈信息:"+ environment.stacktrace);
lstenv.items.add("用户域:"+ environment.userdomainname);
lstenv.items.add("clr版本:"+ environment.version);
lstenv.items.add("系统启动后经过的毫秒:"+ environment.tickcount);
lstenv.items.add("进程上下文的物理内存量:"+ environment.workingset);
string[] drives = environment.getlogicaldrives();
lstenv.items.add("本机磁盘驱动器: "+ string.join(", ", drives));

// 获取本机所有环境变量
idictionary environmentvariables = environment.getenvironmentvariables();
foreach (dictionaryentry de in environmentvariables)
{
lstenv.items.add(de.key+"="+de.value);
}

}
public void initregkeydata()
{
//通过注册表获取信息
registrykey rkey = registry.localmachine;
rkey = rkey.opensubkey("hardware\\description\\system\\centralprocessor\\0");
lstregkey.items.add("处理器信息:"+rkey.getvalue("processornamestring").tostring().trim());

rkey=registry.localmachine;
rkey = rkey.opensubkey("software\\microsoft\\windows nt\\currentversion\\networkcards\\1");
lstregkey.items.add("网卡信息:"+(string)rkey.getvalue("description"));
}
public void initapidata()
{
//调用getwindowsdirectory和getsystemdirectory函数分别取得windows路径和系统路径
const int nchars = 128;
stringbuilder buff = new stringbuilder(nchars);
getwindowsdirectory(buff,nchars);
lstapi.items.add("windows路径:"+buff.tostring());
getsystemdirectory(buff,nchars);
lstapi.items.add("系统路径:"+buff.tostring());
//调用getsysteminfo函数获取cpu的相关信息
cpu_info cpuinfo;
cpuinfo = new cpu_info();
getsysteminfo(ref cpuinfo);
//cpu信息的读取是错误的,我本只有一个cpu,读成了两个
lstapi.items.add("本计算机中有"+cpuinfo.dwnumberofprocessors.tostring()+"个cpu");
lstapi.items.add("cpu的类型为"+cpuinfo.dwprocessortype.tostring());
lstapi.items.add("cpu等级为"+cpuinfo.dwprocessorlevel.tostring());
lstapi.items.add("cpu的oem id为"+cpuinfo.dwoemid.tostring());
lstapi.items.add("cpu中的页面大小为"+cpuinfo.dwpagesize.tostring());
//调用globalmemorystatus函数获取内存的相关信息
memory_info meminfo;
meminfo = new memory_info();
globalmemorystatus(ref meminfo);
lstapi.items.add( meminfo.dwmemoryload.tostring()+"%的内存正在使用");
lstapi.items.add("物理内存共有"+meminfo.dwtotalphys.tostring()+"字节");
lstapi.items.add("可使用的物理内存有"+meminfo.dwavailphys.tostring()+"字节");
lstapi.items.add( "交换文件总大小为"+meminfo.dwtotalpagefile.tostring()+"字节");
lstapi.items.add( "尚可交换文件大小为"+meminfo.dwavailpagefile.tostring()+"字节");
lstapi.items.add( "总虚拟内存有"+meminfo.dwtotalvirtual.tostring()+"字节");
lstapi.items.add( "未用虚拟内存有"+meminfo.dwavailvirtual.tostring()+"字节");
//调用getsystemtime函数获取系统时间信息
systemtime_info stinfo;
stinfo = new systemtime_info();
getsystemtime(ref stinfo);
lstapi.items.add(stinfo.wyear.tostring()+"年"+stinfo.wmonth.tostring()+"月"+stinfo.wday.tostring()+"日");
lstapi.items.add((stinfo.whour+8).tostring()+"点"+stinfo.wminute.tostring()+"分"+stinfo.wsecond.tostring()+"秒");


}


该文章在 2012/1/1 2:32:56 编辑过
关键字查询
相关文章
正在查询...
点晴ERP是一款针对中小制造业的专业生产管理软件系统,系统成熟度和易用性得到了国内大量中小企业的青睐。
点晴PMS码头管理系统主要针对港口码头集装箱与散货日常运作、调度、堆场、车队、财务费用、相关报表等业务管理,结合码头的业务特点,围绕调度、堆场作业而开发的。集技术的先进性、管理的有效性于一体,是物流码头及其他港口类企业的高效ERP管理信息系统。
点晴WMS仓储管理系统提供了货物产品管理,销售管理,采购管理,仓储管理,仓库管理,保质期管理,货位管理,库位管理,生产管理,WMS管理系统,标签打印,条形码,二维码管理,批号管理软件。
点晴免费OA是一款软件和通用服务都免费,不限功能、不限时间、不限用户的免费OA协同办公管理系统。
Copyright 2010-2024 ClickSun All Rights Reserved