获取本地计算机的名称

           获取计算机的名称的方法有三种,可以通过GetComputerName函数,gethostname函数,GetNetworkParams函

      第一种方法如下:调用GetComputerName函数可以获取本地 计算机的NetBIos名称

CString strName=_T(""); DWORD nSize=1024; ::GetComputerName(strName.GetBuffer(1024),&nSize); strName.ReleaseBuffer(); CString strText=_T(""); strText.Format(_T("本地计算机名称:%s"),strName); AfxMessageBox(strText);

 

第二种方法如下:通过gethostname函数获得方法如下

WSADATA WSAData; if(WSAStartup(MAKEWORD(2,0),&WSAData)!=0) { return; } CString strName=_T(""); gethostname(strName.GetBuffer(1024),1024); strName.ReleaseBuffer(); CString strText=_T(""); strText.Format(_T("本地计算机的名称:%s"),strName); AfxMessageBox(strText); WSACleanup();

 

第三种方法如下:通过GetNetworkParams函数获的

DWORD nResult=0; DWORD nLength=0; nResult=GetNetworkParams(NULL,&nLength); if(nResult!=ERROR_BUFFER_OVERFLOW) { return; } FIXED_INFO* pFixedInfo=(FIXED_INFO*)new BYTE(nLength); nResult=GetNetworkParams(pFixedInfo,&nLength); if(nResult!=ERROR_SUCCESS) { delete[] pFixedInfo; return; } CString strText=_T(""); strText.Format(_T("本地计算机名称:%s"),pFixedInfo->HostName); AfxMessageBox(strText); delete[] pFixedInfo;

 

你可能感兴趣的:(c++)