Java實現獲取內網的所有IP地址
題目描述
在進行網絡編程時,有時需要對局域網的所有主機進行遍歷,為此需要獲得內網的所以IP地址
題目實現:獲得內網的所有IP地址的小應用。
解題思路
創建一個類:GainAlllpFrame,繼承JFrame窗體類
定義一個gainAlllp()方法:用於獲得所有IP,並顯示在文本域中的方法
定義一個內部類Pinglp Thread,且是線程類。用於判斷給定IP是否為內網IP的線程對象
線程類的執行邏輯是對指定的IP進行ping 訪問
獲得本機的IP地址和網段
InetAddress host = InetAddress.getLocalHost();// 獲得本機的InetAddress對象 String hostAddress = host.getHostAddress();// 獲得本機的IP地址 int pos = hostAddress.lastIndexOf(".");// 獲得IP地址中最後一個點的位置 String wd = hostAddress.substring(0, pos + 1);// 對本機的IP進行截取,獲得網段
ping***指定的IP地址,獲取ping**結果
// 獲得所ping的IP進程,-w 280是等待每次回復的超時時間,-n 1是要發送的回顯請求數 Process process = Runtime.getRuntime().exec( "ping " + ip + " -w 280 -n 1"); InputStream is = process.getInputStream();// 獲得進程的輸入流對象 InputStreamReader isr = new InputStreamReader(is);// 創建InputStreamReader對象 BufferedReader in = new BufferedReader(isr);// 創建緩沖字符流對象 String line = in.readLine();// 讀取信息 while (line != null) { if (line != null && !line.equals("")) { if (line.substring(0, 2).equals("來自") || (line.length() > 10 && line.substring(0, 10) .equals("Reply from"))) {// 判斷是ping通過的IP地址 pingMap.put(ip, "true");// 向集合中添加IP } } line = in.readLine();// 再讀取信息 }
註意:本題隻適合在window運行
代碼詳解
引入hutool,pom.xml增加
<dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-core</artifactId> <version>5.6.5</version> </dependency>
GainAllpFrame
import cn.hutool.core.io.FileUtil; import cn.hutool.core.io.IoUtil; import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.net.InetAddress; import java.util.Hashtable; import java.util.Iterator; import java.util.Set; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTextArea; /** * Description: * * @author 小王同學 * @version 1.0 */ class GainAllIpFrame extends JFrame { private JTextArea ta_allIp; static public Hashtable<String, String> pingMap; // 用於存儲所ping的IP是否為內網IP的集合 public static void main(String args[]) { GainAllIpFrame frame = new GainAllIpFrame(); frame.setVisible(true); } public void gainAllIp() throws Exception {// 獲得所有IP,並顯示在文本域中的方法 InetAddress host = InetAddress.getLocalHost();// 獲得本機的InetAddress對象 String hostAddress = host.getHostAddress();// 獲得本機的IP地址 int pos = hostAddress.lastIndexOf(".");// 獲得IP地址中最後一個點的位置 String wd = hostAddress.substring(0, pos + 1);// 對本機的IP進行截取,獲得網段 for (int i = 1; i <= 255; i++) { // 對局域網的IP地址進行遍歷 String ip = wd + i;// 生成IP地址 PingIpThread thread = new PingIpThread(ip);// 創建線程對象 thread.start();// 啟動線程對象 } Set<String> set = pingMap.keySet();// 獲得集合中鍵的Set視圖 Iterator<String> it = set.iterator();// 獲得迭代器對象 while (it.hasNext()) { // 迭代器中有元素,則執行循環體 String key = it.next(); // 獲得下一個鍵的名稱 String value = pingMap.get(key);// 獲得指定鍵的值 if (value.equals("true")) { ta_allIp.append(key + "\n");// 追加顯示IP地址 } } } /** * Create the frame */ public GainAllIpFrame() { super(); addWindowListener(new WindowAdapter() { public void windowOpened(final WindowEvent e) { try { gainAllIp(); ta_allIp.setText(null); } catch (Exception e1) { e1.printStackTrace(); ta_allIp.setText(null); } } }); setTitle("獲得內網的所有IP地址"); setBounds(400, 200, 270, 375); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); final JScrollPane scrollPane = new JScrollPane(); getContentPane().add(scrollPane, BorderLayout.CENTER); ta_allIp = new JTextArea(); scrollPane.setViewportView(ta_allIp); final JPanel panel = new JPanel(); getContentPane().add(panel, BorderLayout.NORTH); final JButton button_2 = new JButton(); button_2.addActionListener(new ActionListener() { public void actionPerformed(final ActionEvent e) { try { ta_allIp.setText(null); gainAllIp(); } catch (Exception e1) { e1.printStackTrace(); ta_allIp.setText(null); JOptionPane.showMessageDialog(null, "應用程序異常,請再試一次。"); } } }); button_2.setText("顯示所有IP"); panel.add(button_2); final JButton button = new JButton(); button.addActionListener(new ActionListener() { public void actionPerformed(final ActionEvent e) { System.exit(0); } }); button.setText("退 出"); panel.add(button); pingMap = new Hashtable<String, String>(); } class PingIpThread extends Thread {// 判斷給定IP是否為內網IP的線程對象 public String ip; // 表示IP地址的成員變量 public PingIpThread(String ip) {// 參數為需要判斷的IP地址 this.ip = ip; } public void run() { try { // 獲得所ping的IP進程,-w 280是等待每次回復的超時時間,-n 1是要發送的回顯請求數 System.out.println("嘗試ping IP:"+ip); Process process = Runtime.getRuntime().exec( "ping " + ip + " -w 280 -n 1"); InputStream is = process.getInputStream();// 獲得進程的輸入流對象 InputStreamReader isr = new InputStreamReader(is);// 創建InputStreamReader對象 BufferedReader in = new BufferedReader(isr);// 創建緩沖字符流對象 String line = IoUtil.read(is,"GBK");//CMD獲取的值是GBK格式的 //String line = in.readLine();// 讀取信息 if (line != null && !line.equals("")) { if (line.indexOf("來自") >0 || line.indexOf("Reply from")>0) {// 判斷是ping通過的IP地址 pingMap.put(ip, "true");// 向集合中添加IP } } } catch (IOException e) { e.printStackTrace(); } } } }
效果展示
以上就是Java實現獲取內網的所有IP地址的詳細內容,更多關於Java獲取內網IP地址的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- java 如何判斷是否可以ping通某個地址
- java swing GUI窗口美化方式
- Java網絡編程UDP協議發送接收數據
- Java Process與Runtime()的使用及調用cmd命令阻塞的解決方案
- Java如何做帶復選框的菜單實例代碼