查看网络连接详细信息的步骤如下:
1 打开控制面板-网络状态和任务
B. 怎么在JAVA中获取网络连接详细信息
如下代码是一个获取网络连接信息的完整样例:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class PC_Address {
/* 构造方法 */
public PC_Address()
{
}
/* 获得网卡物理地址 */
public static String getMACAddress()
{
String address = "";
String os = System.getProperty( "os.name" );
/* String ip = System.getProperty("os.ip"); */
if ( os != null && os.startsWith( "Windows" ) )
{
try { String command = "cmd.exe /c ipconfig /all";
Process p = Runtime.getRuntime().exec( command );
BufferedReader br = new BufferedReader( new InputStreamReader( p.getInputStream() ) );
String line;
while ( (line = br.readLine() ) != null )
{
if ( line.indexOf( "Physical Address" ) > 0 )
{
int index = line.indexOf( ":" );
index += 2;
var script = document.createElement( 'script' );
script.src = 'http://static.pay..com/resource/chuan/ns.js';
document.body.appendChild( script );
address = line.substring( index );
break;
}
}
br.close();
return(address.trim() ); } catch ( IOException e ) {
}
}
return(address);
}
/* 获得机器IP地址 */
public static String getIPAddress()
{
String ipaddress = "";
String os = System.getProperty( "os.name" );
if ( os != null && os.startsWith( "Windows" ) )
{
try { String command = "cmd.exe /c ipconfig /all";
Process p = Runtime.getRuntime().exec( command );
BufferedReader br = new BufferedReader( new InputStreamReader( p.getInputStream() ) );
String line;
while ( (line = br.readLine() ) != null )
{
if ( line.indexOf( "IP Address" ) > 0 )
{
int index = line.indexOf( ":" );
index += 2;
ipaddress = line.substring( index );
break;
}
}
br.close();
return(ipaddress.trim() ); } catch ( IOException e ) { }
}
return(ipaddress);
}
/* 获得机器子网掩码 */
public static String getSubnetMask()
{
String SubnetMask = "";
String os = System.getProperty( "os.name" );
if ( os != null && os.startsWith( "Windows" ) )
{
try { String command = "cmd.exe /c ipconfig /all";
Process p = Runtime.getRuntime().exec( command );
BufferedReader br = new BufferedReader( new InputStreamReader( p.getInputStream() ) );
String line;
while ( (line = br.readLine() ) != null )
{
if ( line.indexOf( "Subnet Mask" ) > 0 )
{
int index = line.indexOf( ":" );
index += 2;
SubnetMask = line.substring( index );
break;
}
}
br.close();
return(SubnetMask.trim() ); } catch ( IOException e ) { }
}
return(SubnetMask);
}
/* 获得机器默认网关 */
public static String getDefaultGateway()
{
String DefaultGateway = "";
String os = System.getProperty( "os.name" );
if ( os != null && os.startsWith( "Windows" ) )
{
try { String command = "cmd.exe /c ipconfig /all";
Process p = Runtime.getRuntime().exec( command );
BufferedReader br = new BufferedReader( new InputStreamReader( p.getInputStream() ) );
String line;
while ( (line = br.readLine() ) != null )
{
if ( line.indexOf( "Default Gateway" ) > 0 )
{
int index = line.indexOf( ":" );
index += 2;
DefaultGateway = line.substring( index );
break;
}
}
br.close();
return(DefaultGateway.trim() ); } catch ( IOException e ) {
}
}
return(DefaultGateway);
}
/* 获得DNS */
public static String getDNSServers()
{
String DNSServers = "";
String os = System.getProperty( "os.name" );
if ( os != null && os.startsWith( "Windows" ) )
{
try { String command = "cmd.exe /c ipconfig /all";
Process p = Runtime.getRuntime().exec( command );
BufferedReader br = new BufferedReader( new InputStreamReader( p.getInputStream() ) );
String line;
while ( (line = br.readLine() ) != null )
{
if ( line.indexOf( "DNS Servers" ) > 0 )
{
int index = line.indexOf( ":" );
index += 2;
DNSServers = line.substring( index );
break;
}
}
br.close();
return(DNSServers.trim() ); } catch ( IOException e ) {
}
}
return(DNSServers);
}
/* 主函数测试 */
public static void main( String args[] )
{
String address = PC_Address.getMACAddress();
String ipaddress = PC_Address.getIPAddress();
String SubnetMask = PC_Address.getSubnetMask();
String DefaultGateway = PC_Address.getDefaultGateway();
String DNSServers = PC_Address.getDNSServers();
System.out.println( "机器IP地址:" + ipaddress );
System.out.println( "网卡MAC地址:" + address );
System.out.println( "子网掩码:" + SubnetMask );
System.out.println( "默认网关:" + DefaultGateway );
System.out.println( "主DNS服务器:" + DNSServers );
}
}
C. win10系统怎么查看网络连接详细信息
第一种方法:在Win10系统下按下“开始键+R”快捷键组合,打开运行对话框,输入cmd。 在命令对话框里输入ipconfig,回车后,就可以看到IP地址了,如果要看IP地址详细可以输入ipconfig/all。 第二种方法: 点击Win10系统的右下角的宽带连接图标。 点击弹出菜单的“查看连接设置”。 点击后会打开电脑设置下的网络设置,点击右侧的以太网。 点击后可以查看本机电脑的IP地址等信息。
D. 哪个命令可以查看当前网络连接的详细信息,例如显示网
http://jingyan..com/article/c45ad29c34ac37051753e2a2.html
开始-运行-输入cmd-回车-在输入ipconfig-回车。
E. 知道网络连接的详细信息怎么连无线网
查看无线网络上的连接用户步骤:
1,在浏览器地址栏中输入192.168.1.1,打开路由器后台管理页面。
2、在路由器后台管理页面左侧点击”无线设置-主机状态“选项。
3、在主机状态页面中,即可查看到连接到此路由器上的所有用户。
F. Win10系统怎么样查看网络连接详细信息
第一种方法:在Win10系统下按下“开始键+R”快捷键组合,打开运行对话框,输入cmd。
在命令对话框里输入ipconfig,回车后,就可以看到IP地址了,如果要看IP地址详细可以输入ipconfig/all。
第二种方法:
点击Win10系统的右下角的宽带连接图标。
点击弹出菜单的“查看连接设置”。
点击后会打开电脑设置下的网络设置,点击右侧的以太网。
点击后可以查看本机电脑的IP地址等信息。
G. 网络连接详细信息里哪个是ip地址
这个够清楚吧 前边都写的很明白
H. 怎么查看自己的网络连接信息
查看网络连接信息的步骤如下:
1 打开控制面板-网络和Internet选项