導航:首頁 > 物理學科 > 如何獲取網卡物理地址

如何獲取網卡物理地址

發布時間:2022-03-03 20:51:02

⑴ 怎麼知道網卡的物理地址

開始--運行---cmd (注意:98是 command)--輸入命令 ipconfig/all 回車就可以看到了。 其中:
Physical Address. . . .. . . : 00-04-79-68-04-F*

就是你的物理地址了

⑵ 如何獲取一台計算機網卡的物理地址

應該在開始->運行->輸入cmd,進入dos界面,輸入ipconfig/all,本地連接的Physical Address

⑶ 怎樣查看電腦網卡的物理MAC地址

1、以Win7系統為例,在桌面任務欄中對著網路圖標擊右鍵,選擇「打開網路和共享中心」菜單;

⑷ 如何獲取網卡MAC地址

⑸ 如何獲取網卡地址

方法1:
1、對著桌面的「網路」,右鍵--屬性
2、點擊「更改適配器設置」
3、找到你連接的網路,右鍵--狀態
4、點擊「詳細信息」
5、裡面的物理地址就是你的網卡地址END
方法2:
點擊開始菜單,輸入cmd,回車
在命令行中輸入ipconfig/all
回車
方法3:
找到你的網路連接,物理地址就是你的網卡地址

⑹ 如何獲取網卡硬體地址

查看筆記本網卡的MAC地址有一下幾種方法。
1. 查看筆記本電腦底座的標簽
2. 查看「網路連接——本地連接——詳細信息——物理地址」或者是「網路連接——無線連接——詳細信息——物理地址」
3. 利用命令提示符查看網卡物理地址。這種方法也是比較簡單方便的方法。
按住win鍵+R或者在開始菜單里點擊運行,在運行中輸入cmd然後回車,然後再輸入ipconfig/all 按回車,即可查看IP地址和mac地址。

⑺ java怎樣取得網卡物理地址

給你一個區域網的聊天程序或許對你有用!!!
import java.net.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.util.GregorianCalendar;
import javax.swing.JDialog;

public class QQ extends Frame implements ActionListener {
Label label1 = new Label("請輸入您要發送的信息(限英文):");
Label label2 = new Label("以下是你收到的消息記錄:");
Label label3 = new Label("把以上消息發給如下IP地址:");
TextArea input = new TextArea("", 7, 14, TextArea.SCROLLBARS_BOTH);
TextArea output = new TextArea("", 8, 14, TextArea.SCROLLBARS_BOTH);
TextField IPAdd = new TextField("192.168.1.88");
Button send = new Button("發送消息");
Button about = new Button("關於");
Button clear = new Button("清空消息紀錄");
GregorianCalendar time = new GregorianCalendar();

QQ() {
super("仿QQ聊天工具");
setLayout(null);
setLocation(250, 250);
this.setSize(518, 218);
this.setResizable(false); // 大小不可變
this.setBackground(new Color(220, 220, 220));
Toolkit kit = Toolkit.getDefaultToolkit();
Image myImage = kit.getImage("icons\\QQ.bmp");
this.setIconImage(myImage);

label1.setFont(new Font("宋體", Font.PLAIN, 12));
label1.setForeground(new Color(0, 0, 192));
label1.setBounds(8, 28, 216, 16);

input.setBackground(new Color(255, 255, 128));
input.setFont(new Font("Times New Roman", Font.BOLD, 15));
input.setForeground(Color.magenta);
input.setBounds(8, 44, 248, 120);

output.setBackground(new Color(128, 255, 255));
output.setFont(new Font("Times New Roman", Font.PLAIN, 12));
output.setForeground(Color.magenta);
output.setBounds(264, 44, 248, 136);
output.setEditable(false);

send.setFont(new Font("新宋體", Font.PLAIN, 12));
send.setLocation(136, 188);
send.setSize(120, 22);

clear.setFont(new Font("新宋體", Font.PLAIN, 12));
clear.setLocation(392, 188);
clear.setSize(120, 22);

label2.setFont(new Font("宋體", Font.PLAIN, 12));
label2.setForeground(new Color(0, 0, 192));
label2.setBounds(264, 28, 216, 16);

about.setFont(new Font("新宋體", Font.PLAIN, 12));
about.setLocation(264, 188);
about.setSize(120, 22);

label3.setFont(new Font("宋體", Font.PLAIN, 12));
label3.setForeground(new Color(0, 0, 192));
label3.setBounds(8, 172, 160, 16);

IPAdd.setFont(new Font("新宋體", Font.PLAIN, 12));
IPAdd.setLocation(8, 190);
IPAdd.setSize(120, 19);

add(label1);
add(input);
add(label3);
add(label2);
add(output);
add(IPAdd);
add(send);
add(about);
add(clear);
addWindowListener(new closeWin());
send.addActionListener(this);
about.addActionListener(this);
clear.addActionListener(this);

setVisible(true);
waitForData();
}

public void actionPerformed(ActionEvent e) {
if (e.getSource() == send)
sendData();
else if (e.getSource() == clear)
output.setText("");
else if (e.getSource() == about) {
AboutQQ test = new AboutQQ(this);
}
}

public static void main(String args[]) {
new QQ();
}

void sendData() {
try {
String msg = input.getText();
if (msg.equals(""))
return ;
input.setText("");
String ad = IPAdd.getText();
InetAddress tea = InetAddress.getLocalHost();
String asd = tea.getHostAddress();//發送方的IP地址
output.append("[" + asd + "]:(" + time.get(GregorianCalendar.YEAR)
+ "-" + time.get(GregorianCalendar.MONTH) + "-"
+ time.get(GregorianCalendar.DATE) + " "
+ time.get(GregorianCalendar.HOUR) + ":"
+ time.get(GregorianCalendar.MINUTE) + ":"
+ time.get(GregorianCalendar.SECOND) + ") " + "\n" + msg
+ "\n");
msg = "From [" + asd + "]:(" + time.get(GregorianCalendar.YEAR)
+ "-" + time.get(GregorianCalendar.MONTH) + "-"
+ time.get(GregorianCalendar.DATE) + " "
+ time.get(GregorianCalendar.HOUR) + ":"
+ time.get(GregorianCalendar.MINUTE) + ":"
+ time.get(GregorianCalendar.SECOND) + ") \n" + msg;
InetAddress address = InetAddress.getByName(ad);
int len = msg.length();
byte[] message = new byte[len];
msg.getBytes(0, len, message, 0);
DatagramPacket packet = new DatagramPacket(message, len, address,
9999);
DatagramSocket socket = new DatagramSocket();
socket.send(packet);
} catch (Exception e) {
}
}

void waitForData() {
try {
byte[] buffer = new byte[1024];
DatagramPacket packet = new DatagramPacket(buffer, buffer.length);
DatagramSocket socket = new DatagramSocket(9999);
while (true) {
socket.receive(packet);
String s = new String(buffer, 0, 0, packet.getLength());
output.append(s + "\n");
packet = new DatagramPacket(buffer, buffer.length);
}
} catch (Exception e) {
}
}
}

class closeWin extends WindowAdapter {
public void windowClosing(WindowEvent e) {
Frame fr = (Frame) (e.getSource());
fr.dispose();
System.exit(0);
}
}

class AboutQQ {
private Label label;
private JDialog dialog;

public AboutQQ(Frame f){
label = new Label("Version 1.0");
dialog = new JDialog(f, "About", true);
dialog.setLocation(f.getLocation());
Container dialogPane = dialog.getContentPane();
dialogPane.setLayout(new BorderLayout());
dialogPane.add(label);
dialogPane.setBounds(50,50,50,50);
dialog.pack();
dialog.setVisible(true);
}
}

⑻ 如何獲取網卡物理地址

在命令行中輸入ipconfig /all

⑼ 如何查看本機mac地址(網卡物理地址)

WindowsNT/2000/XP/2003查看方法:依次點擊:開始 → 運行 → 輸入cmd → 輸入ipconfig/all → 查看Physical AddressWindows98/95查看方法:依次點擊:開始 → 運行 → 輸入command → 輸入winipcfg → 查看Physical AddressLinux/Unix查看方法:shell#ifconfig -a 網卡物理地址有類似「00-E0-4C-3F-14-DE」或「00:E0:4C:3F:14:DE」的格式。 4、右鍵點擊網路連接圖標(桌面右下角),選擇狀態>支持>詳細信息,在屬性欄里的"實際地址"就是5、

⑽ 如何獲得一個網路適配器的mac地址

想要在注冊表中查看網卡的mac地址可以參考以下方法:
1、執行【開始】丨【運行】命令,在彈出的【運行】對話框中輸入regedit.單擊【確定】按鈕,打開注冊表編輯器,如圖1所示。

2、依次選擇HKEY_LOCAL_MACHINE | SYSTEM | CurrentControlSet|Control | Class |
4D36E970-E325-11CE-BFC1-08002BE10318
結點,依次單擊0000、0001等選項找到所要的網卡所在的選項,如圖2所示。

小提示:打開注冊表編輯器後,執行【編 輯】丨【查找下一個】命令,在Ghost xp sp3彈出的對話 框中輸入「網路適配器」,即可找到需要修改的網卡所在選項。

如果想要方便的查看MAC地址可以參考以下方法:
1、點擊開始菜單,輸入cmd,找到cmd.exe後運行。

2、在CMD窗口中輸入ipconfig /all 回車。
3、在回顯的信息中找到:物理地址 或者 Physical Address. . . . . . . . . : xx-xx-xx-xx-xx-xx這個就是MAC地址。

閱讀全文

與如何獲取網卡物理地址相關的資料

熱點內容
word中化學式的數字怎麼打出來 瀏覽:705
乙酸乙酯化學式怎麼算 瀏覽:1372
沈陽初中的數學是什麼版本的 瀏覽:1318
華為手機家人共享如何查看地理位置 瀏覽:1010
一氧化碳還原氧化鋁化學方程式怎麼配平 瀏覽:848
數學c什麼意思是什麼意思是什麼 瀏覽:1369
中考初中地理如何補 瀏覽:1260
360瀏覽器歷史在哪裡下載迅雷下載 瀏覽:671
數學奧數卡怎麼辦 瀏覽:1350
如何回答地理是什麼 瀏覽:989
win7如何刪除電腦文件瀏覽歷史 瀏覽:1023
大學物理實驗干什麼用的到 瀏覽:1449
二年級上冊數學框框怎麼填 瀏覽:1659
西安瑞禧生物科技有限公司怎麼樣 瀏覽:832
武大的分析化學怎麼樣 瀏覽:1213
ige電化學發光偏高怎麼辦 瀏覽:1301
學而思初中英語和語文怎麼樣 瀏覽:1608
下列哪個水飛薊素化學結構 瀏覽:1388
化學理學哪些專業好 瀏覽:1452
數學中的棱的意思是什麼 瀏覽:1017