1.Win10怎么设置IP地址
1、点右下角网络图标,打开网络和共享中心
2、进入到网络和共享中心,点击左边的更改适配器设置
3、进入到网络适配器
4、点击本地连接(以太网)右键-属性
5、点击internet协议版本4(TCP/IPV4)-属性
6、进入到属性里后即可手动设置IP地址和子网掩码。
2.win10怎么设置固定ip地址
1.登录win10系统桌面,右键开始菜单,点击打开“控制面板(P)”进入下一步操作。
2.在打开的控制面板窗口中,找到“网络和共享中心”点击打开进入下一步操作。
3.在打开的网络和共享中心窗口中,点击打开“以太网”(也就是电脑的网络连接)进入下一步操作。
4.在以太网窗口中,点击打开“属性(R)”
5.这里我们需要拖动滚动条,找到Internet协议版本4并且点击打开。
6.手动输入固定IP和DNS点击确定完成操作。
3.怎么设置windows10系统的IP地址
Win10设置IP地址方法如下:
1、右键Win10系统桌面上的网络,点击弹出菜单上的属性。如下图所示。
2、点击网络和共享中心窗口上的以太网,如下图所示。
3、点击以太网状态对话框上的“属性”,如下图所示。
4、在以太网属性上找到“TCP/IP协议v4"并双击打开,如下图所示。
5、在弹出对话框中勾选“使用下面的IP地址”和“使用下面的DNS服务器地址”的选项,即设置静态IP。如下图所示。
6、最后根据自己的实际IP地址填写,然后点击确定
4.java获得IP地址
下面有一篇文章,介绍若何读取物理网卡的地址 ,同样的 你可以用这个方法读取你所需要的本机IP地址 ======================================================= J2SE5.0新特性之ProcessBuilder 这个例子使用了J2SE5.0的ProcessBuilder类执行外部的程序,相对于 Runtime.exec ,它更方便,可以设置环境变量等。
这里使用它在windows下读取物理网卡的地址 package com.kuaff.jdk5package; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.List; public class ProcessBuilderShow { public static List getPhysicalAddress() { Process p = null; //物理网卡列表 List address = new ArrayList(); try { //执行ipconfig /all命令 p = new ProcessBuilder("ipconfig", "/all").start(); } catch (IOException e) { return address; } byte[] b = new byte[1024]; StringBuffer sb = new StringBuffer(); //读取进程输出值 InputStream in = p.getInputStream(); try { while (in.read(b)>0) { sb.append(new String(b)); } } catch (IOException e1) { } finally { try { in.close(); } catch (IOException e2) { } } //以下分析输出值,得到物理网卡 String rtValue = sb.substring(0); int i = rtValue.indexOf("Physical Address. . . . . . . . . :"); while(i>0) { rtValue = rtValue.substring(i + "Physical Address. . . . . . . . . :".length()); address.add(rtValue.substring(0,18)); i = rtValue.indexOf("Physical Address. . . . . . . . . :"); } return address; } public static void main(String[] args) { List address = ProcessBuilderShow.getPhysicalAddress(); for(String add:address) { System.out.printf("物理网卡地址:%s%n", add); } } }。
5.java获得IP地址
下面有一篇文章,介绍若何读取物理网卡的地址 ,同样的
你可以用这个方法读取你所需要的本机IP地址
=======================================================
J2SE5.0新特性之ProcessBuilder
这个例子使用了J2SE5.0的ProcessBuilder类执行外部的程序,相对于 Runtime.exec ,它更方便,可以设置环境变量等。这里使用它在windows下读取物理网卡的地址
package com.kuaff.jdk5package;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
public class ProcessBuilderShow
{
public static List getPhysicalAddress()
{
Process p = null;
//物理网卡列表
List address = new ArrayList();
try
{
//执行ipconfig /all命令
p = new ProcessBuilder("ipconfig", "/all").start();
}
catch (IOException e)
{
return address;
}
byte[] b = new byte[1024];
StringBuffer sb = new StringBuffer();
//读取进程输出值
InputStream in = p.getInputStream();
try
{
while (in.read(b)>0)
{
sb.append(new String(b));
}
}
catch (IOException e1)
{
}
finally
{
try
{
in.close();
}
catch (IOException e2)
{
}
}
//以下分析输出值,得到物理网卡
String rtValue = sb.substring(0);
int i = rtValue.indexOf("Physical Address. . . . . . . . . :");
while(i>0)
{
rtValue = rtValue.substring(i + "Physical Address. . . . . . . . . :".length());
address.add(rtValue.substring(0,18));
i = rtValue.indexOf("Physical Address. . . . . . . . . :");
}
return address;
}
public static void main(String[] args)
{
List address = ProcessBuilderShow.getPhysicalAddress();
for(String add:address)
{
System.out.printf("物理网卡地址:%s%n", add);
}
}
}
转载请注明出处windows之家 » win10的java设置ip地址