查看網路連接詳細信息的步驟如下:
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選項