取得本机的用户名和IP

System.out.println(InetAddress.getLocalHost().getHostName());

System.out.println(InetAddress.getLocalHost().getHostAddress());

时间: 2024-10-27 01:09:31

取得本机的用户名和IP的相关文章

批处理判断域用户360程序是否安装,没安装则输出用户名和IP 。

问题:域策略部署360企业版杀毒软件,1.由于下面客户机的各种环境问题,导致个别终端没有安装上360软件.2.电脑700台比较多,一个个寻找特别麻烦.解决措施:写了一个批处理并域策略推送,把没安装的用户和IP发到指定目录里,自己按照用户或者IP去自由解决.这里技术有限,没有写判断正在运行的软件. 批处理逻辑:1.判断软件是否已安装(检测在360C盘路径下exe文件),没有安装输出用户名和IP地址,已安装退出.2.输出的路径是共享路径,每个用户都能写入. @echo off if "%1"

获取本机当前用户名

// function GetUser: string; //获取本机当前用户名var Buffer: array[0..255] of Char; Size: cardinal;begin Size := 256; if GetUserName(Buffer, Size) then  begin    Result := Buffer  end else   begin    Result := 'Unknown'   end;end; function GetComputerName: st

c++得到本地用户名和IP

bool CDlgResetAlarmInfo::GetLocalUserNameAddIP(CString &a_lstrUserName ,CString &a_IpStr) { char buf[256]=""; WSADATA w; WSAStartup(0x0101, &w); struct hostent *ph = 0; gethostname(buf, 256); string hostNmae = buf; a_lstrUserName = h

Py获取本机指定网卡的ip地址

前段时间需要批量修改服务器的配置文件,里面包含本机的IP地址,由于服务器有多块网卡并且配置多个ip地址,一开始想写shell脚本批量修改,但是既然现在正在学Python,何不研究下使用Python写,在网络上搜了相关文章,根据自己实际情况,便有了下面的脚本: 利用Python获取本机指定网卡的ip地址: #!/usr/bin/env python # -.- coding: utf-8 -.- # By Sandler import socket import fcntl import stru

js获取本机mac地址,IP地址,计算机名

<!DOCTYPE HTML> <html> <head> <title>js获取本机mac地址,IP地址,计算机名</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta content="MSHTML 6.00.2800.1106" name="

linux下配置SuperMap(非本机)许可服务器的ip

在Linux下配置许可到指定许可服务器(非本机),需要做以下操作: 1.前提:开通linux客户机和许可服务器之间的1947端口(TCP协议),可通过如下方法验证端口是否开通: 1)在linux客户机上运行 ping 许可服务器IP 2)在linux客户机上运行 telnet 许可服务器IP 1947 2.停止linux客户机许可服务:进入etc/init.d 目录,运行 sh aksusbd stop 3.修改linux客户机许可配置到指定许可服务器:把  /etc/hasplm下的haspi

c#中如何获取本机MAC地址、IP地址、硬盘ID、CPU序列号等系统信息

public class Computer { public static string CpuID; //1.cpu序列号 public static string MacAddress; //2.mac序列号 public static string DiskID; //3.硬盘id public static string IpAddress; //4.ip地址 public static string LoginUserName; //5.登录用户名 public static stri

node 获取本机主机名和ip

/**获取本机ip**/function getIPAdress(){    var interfaces = require('os').networkInterfaces();    for(var devName in interfaces){        var iface = interfaces[devName];        for(var i=0;i<iface.length;i++){            var alias = iface[i];           

获取本机的内外网ip

package tool; import java.net.InetAddress;import java.net.UnknownHostException; /** * @description * @author: 123.com * @create: 2019-01-17 17:34:52 **/ public class GetIp { public static void getip() { try { InetAddress address = InetAddress.getLoca