E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
gethostname
python socket简单网络编程
server端:import sockets = socket.socket()host = socket.
gethostname
()port = 1234s.bind((host, port))s.listen
714917570
·
2016-09-06 16:30
python
socket
编程
从头开始学Python
Python关于socket的一个小型服务器和客户机实例
一个小型服务器>>>importsocket>>>s=socket.socket()>>>hostname=socket.
gethostname
()>>>port=5566>>>s.bind((hostname
蘑菇猎手
·
2016-09-02 22:00
Python
Python入门:socket连续接收客户端数据
fromsocketserverimportThreadingMixIn,ForkingMixIn,StreamRequestHandlerimportsocket,selects=socket.socket()#host=socket.
gethostname
foryouslgme
·
2016-08-31 22:17
python
socket
python
ASP.NET简单获取服务端和客户端计算机名称的方法
分享给大家供大家参考,具体如下://获取服务端计算机名称stringserverPCName=System.Net.Dns.
GetHostName
();//获取客户端计算机名称System.Net.IPAddressclientIP
Quber
·
2016-08-04 09:52
C#获取机器码的方法详解(机器名,CPU编号,硬盘编号,网卡mac等)
usingSystem.Management;usingSystem;publicclassHardwareInfo{//取机器名publicstringGetHostName(){returnSystem.Net.Dns.
GetHostName
mn-soft.com
·
2016-07-07 12:34
socket基础和select(python)
//haoningabc.iteye.com/blog/2305026使用python一言不合上代码server.pyimportsockets=socket.socket()host=socket.
gethostname
haoningabc
·
2016-06-14 17:00
socket
使用
gethostname
()函数和gethostbyname()函数获取主机相关信息
from http://ty1992.blog.51cto.com/7098269/1685880
gethostname
() : 返回本地主机的标准主机名。
小 楼 一 夜 听 春 雨
·
2016-05-24 19:00
[置顶] Python_bug收集_TypeError:'str' does not support the buffer interface
/usr/bin/python #-*-coding:UTF-8-*- importsocket fromtimeimportctime HOST=socket.
gethostname
() PORT=
erujo
·
2016-05-08 00:00
用程序获取本机IP地址,mac地址
地址//定义要返回的Ip地址.stringstrIpAddress=string.Empty;try{foreach(IPAddressipAddressinDns.GetHostEntry(Dns.
GetHostName
confused_kitten
·
2016-04-26 20:08
C#
获取设备信息
获取手机设备的IP地址:知识延伸:对于获取IP地址可以使用IPV4Address或者IPV6Address来获取,如果使用INetAddress来获取的话则调用
getHostName
,如果使用IPV4Address
weiwozhiyi
·
2016-04-18 16:00
android
Mac 终端配色,修改主机名,共享电脑名
sudoscutil--setComputerNamenewName$sudoscutil--setHostNamenewhHostName//查看$scutil--getComputerName$scutil--
getHostName
1
demo168
·
2016-04-12 15:23
Mac相关
[linux编程]常用小模块
/QApplicationa(argc,argv);//MainWindoww;//w.show();//returna.exec();charhostname[80];intgetHostName=
gethostname
猫哥
·
2016-03-30 00:00
linux编程
C++ 获取windows一些基本信息
NULL,info.InstallPath,128);//程序运行路径GetUserName(user_name,&dwBufferLen);//用户名charhostname[MAX_PATH]={0};
gethostname
qq_26790617
·
2016-03-26 12:00
C++
windows
获取计算机基本信息
python之网络编程学习小结
/usr/bin/python importsocket s=socket.socket()#创建socket对象 host=socket.
gethostname
() port=1234 s.bind
wangjianno2
·
2016-03-13 14:00
python select、poll
select方法:importsocket,select s=socket.socket() host=socket.
gethostname
() port=1234 s.bind((host,port
zw~菜园子
·
2016-02-11 20:00
python socket
服务端importsocket s=socket.socket() host=socket.
gethostname
() port=1234 s.bind((host,port)) s.listen
zw~菜园子
·
2016-02-11 18:00
随记
就能猜出来默认的是哪种提交方式 而 html 默认是GET2.远程连接 Process.Start("mstsc","/v:192.168.1.1");3.获取本机的IP Dns.GetHostEntry(Dns.
GetHostName
刀小爱
·
2016-01-30 19:00
python2.7_1.2_打印设备名和IPv4地址
代码如下:#-*-coding:utf-8-*- importsocket defprint_machine_info(): host_name=socket.
gethostname
()
jamesben
·
2016-01-28 16:00
php 函数
1:
gethostname
()获取项目主机名2:__FILE__获取文件的绝对路径3:dirname()函数返回路径中的目录部分/上层目录4:realpath()函数返回绝对路径。
顶顶圈圈
·
2016-01-19 12:00
C# 获取本机指定类型指定网卡的Ip地址
1.简单方式,适用于单网卡stringhostName=Dns.
GetHostName
(); IPAddress[]addresses=Dns.GetHostAddresses(hostName);
潸然泪
·
2016-01-16 16:00
文件只能安装一次
uuid.getnode()).hex[-12:] 3return":".join([mac[e:e+2]foreinrange(0,11,2)])获取计算机名字1importsocket 2socket.
gethostname
pyfreshman
·
2016-01-13 20:00
分享一个C#读取计算机信息的类
/// /summarypublic class HardwareInfo{//取机器名public string
GetHostName
(){r
fishwood9701
·
2016-01-08 11:53
计算机
Hardware
public
快速开发平台
asp.net获取服务器信息
HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"]; //方法三 stringstrHostName=System.Net.Dns.
GetHostName
YLBF_DEV
·
2015-12-31 10:00
服务器
asp.net
Python-socket总结
列入你和移动客服咨询问题时,会有一个客服为你解决问题一样,就是你和客服间的相互通信在socket里就是“发送”和“接收”这两个动作就是socket通信方式socket.
gethostname
()#获取
lixiaobo994
·
2015-12-17 14:30
scoket
Python-socket总结
列入你和移动客服咨询问题时,会有一个客服为你解决问题一样,就是你和客服间的相互通信在socket里就是“发送”和“接收”这两个动作就是socket通信方式socket.
gethostname
() #
lixiaobo994
·
2015-12-17 14:30
Scoket
Python-socket总结
列入你和移动客服咨询问题时,会有一个客服为你解决问题一样,就是你和客服间的相互通信在socket里就是“发送”和“接收”这两个动作就是socket通信方式socket.
gethostname
() #
lixiaobo994
·
2015-12-17 14:30
Scoket
获取本机地址信息,遇到小问题...有待解决
/common/InitSock.h" 2#include 3CInitSockinitSock; 4voidmain() 5{ 6charszHost[256]; 7::
gethostname
凡尘网络
·
2015-12-15 16:00
JAVA TCP/IP网络通讯编程(二)
client端和server端通讯客户端通过TCP/IP传输资源文件,比如图片,文字,音频,视频等.....服务端接受到文件存入本地磁盘,返回接受到:“收到来自于"+s.getInetAddress().
getHostName
喻可伟的博客
·
2015-12-12 14:00
一则由于Dns.
GetHostName
引起的奇异问题
一个C#程序有多个MDI窗口组成,以前在Win7上开发没遇到问题,但后来在win10上继续开发的时候,出现奇异的现象,即其中的一个窗口(暂且叫A吧)Show出来的时候会造成程序崩溃,显示“尝试读取或写入受保护的内存这通常指示其它内存已损坏”,但又不是每次都出这样的问题。后来发现规律为:主窗口显示出来之后,如果第一个弹出来的是A窗口,则没有问题,如果先弹出别的窗口,则99%的几率程序崩溃。A窗口自带
Cody_Yu
·
2015-12-11 23:00
JAVA TCP/IP网络通讯编程(一)
一个实例通过client端和server端通讯客户端发送:“我是客户端,请多关照”服务端回复:“收到来自于"+s.getInetAddress().
getHostName
()+"的信息” TestTcp1
喻可伟的博客
·
2015-12-11 17:00
【python】python实例集<一>
printos.path.join(os.path.dirname(__file__),os.pardir,os.pardir) #获取本机IPimportsocket hostname=socket.
gethostname
毕加索的ma
·
2015-12-10 16:00
C#获取局域网ip
stringhostName=System.Net.Dns.
GetHostName
();//本地计算机的DNS主机名的字符串 IPHostEntryhostInfo=Dns.GetHostEntry
qq_26744901
·
2015-11-25 11:00
局域网ip获取
[python&php 网络编程]获取服务端主机名和ip地址
1.python写法importsocketdefprint_machine_info():host_name=socket.
gethostname
()ip_
ddjohn
·
2015-11-19 17:00
python
php
获取IP和mac地址
1.获取IP static string GetLocalIp() { string hostname = Dns.
GetHostName
();//得到本机名 //IPHostEntry localhost
·
2015-11-13 15:36
mac
#获取本机IP地址时排除IPv6类型,只返回IPv4地址的方法
public static string GetLocalIP(){try{string HostName = Dns.
GetHostName
(); //得到主机名IPHostEntry IpEntry
·
2015-11-13 10:20
ipv4
UNIX环境高级编程——TCP/IP网络编程
常用网络信息检索函数
gethostname
() getppername() getsockname() gethostbyname()
·
2015-11-13 03:51
TCP/IP
<>利用dns类和WMI规范获取IP及MAC地址
示例:string strHostName = Dns.
GetHostName
(); //得到本机的主机名IPHostEntry ipEntry = Dns.GetHostByName(strHostName
·
2015-11-12 22:34
mac
获取本机IP地址
System.Net.IPHostEntry IpEntry = System.Net.Dns.GetHostEntry(System.Net.Dns.
GetHostName
()); for
·
2015-11-11 15:02
IP地址
GetHostName
与GetHostByName的使用.
(如果传进去的是一个空字符串,那么返回的是本机的主机名与IP地址) function
gethostname
(name: PAnsiChar; len: In
·
2015-11-11 15:34
hostname
ASP.NET获取IP与MAC
object sender, System.EventArgs e) { System.Net.IPAddress[] addressList = Dns.GetHostByName(Dns.
GetHostName
·
2015-11-11 10:27
asp.net
c#获取本机内网和外网IP
"; 6 host = Dns.GetHostEntry(Dns.
GetHostName
()); 7 foreach (IPAddress ip
·
2015-11-11 08:06
C#
python获取本地ip地址的方法
#以下两种方法可以在ubuntu下或者windows下获得本地的IP地址 import socket # 方法一 localIP = socket.gethostbyname(socket.
gethostname
·
2015-11-11 08:26
python
获取一些系统和用户的通用属性
在网络编程中的通用方法:获取当前电脑名:static System.Net.Dns.
GetHostName
()根据电脑
·
2015-11-11 06:54
用户
[Java]通过java获取计算机名
try { InetAddress addr; addr = InetAddress.getLocalHost(); hostname = addr.
getHostName
·
2015-11-11 01:42
java
.NET获取客户端、服务器端基础信息
在网络编程中的通用方法:获取当前电脑名:static System.Net.Dns.
GetHostName
()根据电脑
·
2015-11-11 00:16
.net
Winform获取本地IP和外网IP
引入命名空间: using System.Net; 实现方法: IPHostEntry ipHost = Dns.Resolve(Dns.
GetHostName
·
2015-11-10 23:50
WinForm
C# 获取机器码
System; public class HardwareInfo ...{ //取机器名 public string
GetHostName
·
2015-11-08 17:29
C#
C#获取本机IP搜集整理7种方法
① 1 private void GetIP() 2 { 3 string hostName = Dns.
GetHostName
();//本机名 4 //
·
2015-11-08 15:43
C#
C#获取本机IP方法
1. 1 private void GetIP() 2 { 3 string hostName = Dns.
GetHostName
();//本机名 4 /
·
2015-11-08 15:32
C#
gethostname
()、sethostname()和getdomainname()、setdomainname()函数
(1)
gethostname
()、sethostname()函数,获取/设置本地主机的标准主机名 int main (int argc, char *argv[]) { char buf
·
2015-11-08 09:11
hostname
上一页
3
4
5
6
7
8
9
10
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他