/**
* 获取本地IP地址
* @author YOLANDA
* @return
*/
public static String getLocalIPAddress() {
String ipAddress = "";
try {
Enumeration netfaces = NetworkInterface.getNetworkInterfaces();...
分类:
移动开发 时间:
2015-04-05 13:25:44
阅读次数:
469
/**
* 获取本地IP地址
*/
function getLocalIPAddress()
{
var obj = null;
var rslt = "127.0.0.1";
try
{
obj = new ActiveXObject("rcbdyctl.Setting");
if (!isNull(obj....
分类:
Web程序 时间:
2015-03-17 10:31:40
阅读次数:
488
需引入命名空间:using System.Net;using System.Management; 1 /// 2 /// 获取本地IP 3 /// 4 /// 5 public static string Get_UserIP() 6 { 7 s...
获取本地 ip 地址,mac,通过域名获取对应的 ip,
是网络编程可能遇到的比较常见的操作了,所以总结如下(封装了3个函数),
直接上代码:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define MAC_S...
分类:
系统相关 时间:
2014-12-11 20:55:31
阅读次数:
203
今天有个朋友问我怎样訪问手机ip,上网找了几个,用了近200多行代码,最后发现头文件用的居然还是Linux中的,OC没有这个头文件。感觉socket本身应该能够后去自己的ip就试了一下,果然7、8行代码就攻克了。这个基本是c的socket,差点儿通用,别的平台也能够使用。- (NSString *)...
分类:
移动开发 时间:
2014-11-12 19:38:37
阅读次数:
226
当写局域网编程时候,往往需要用到IP控件。
请原谅我还在用VC6.0
拖到对话框就能用了!
。。。。。。。。。。。。。。。。。。。。分割线。。。。。。。。。。。。。。。。。。。。。。
获取本地IP显示IP控件
(1)获取本地计算机名
int GetLocalHostName(CString &sHostName)
//获得本地计算机名称
{
char szHostName[2...
分类:
编程语言 时间:
2014-11-05 13:12:14
阅读次数:
578
/**
*获取本地ip
*@return
*/
privateStringgetLocalIpAddress(){
try{
Stringipv4=null;
List<NetworkInterface>nilist=Collections.list(NetworkInterface.getNetworkInterfaces());
for(NetworkInterfaceni:nilist){
List<InetAddress>iali..
分类:
移动开发 时间:
2014-09-18 16:47:14
阅读次数:
205
参照网上用ioctl的SIOCGIFCONF方法获取本地ip成功,代码如下:
#include
#include /* for exit() */
#include
#include /* for socket() */
#include /* for socket() */
#include ...
分类:
其他好文 时间:
2014-08-30 13:56:29
阅读次数:
276
1获取macprotected string getHostMacName() { string mac = ""; ManagementClass mc; mc = new ManagementClass("Win32...
分类:
其他好文 时间:
2014-07-16 19:02:51
阅读次数:
201
- (NSString *)getLocalIP{
struct sockaddr_in sa;
socklen_t len = sizeof(sa);
if(getsockname(sockfd, (struct sockaddr *)&sa, &len))
{
NSLog(@"获取失败!");
}
return [NSS...
分类:
移动开发 时间:
2014-07-16 17:24:41
阅读次数:
238