您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“Java如何實現(xiàn)獲取內(nèi)網(wǎng)的所有IP地址”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Java如何實現(xiàn)獲取內(nèi)網(wǎng)的所有IP地址”吧!
在進行網(wǎng)絡編程時,有時需要對局域網(wǎng)的所有主機進行遍歷,為此需要獲得內(nèi)網(wǎng)的所以IP地址
題目實現(xiàn):獲得內(nèi)網(wǎng)的所有IP地址的小應用。
解題思路
創(chuàng)建一個類:GainAlllpFrame,繼承JFrame窗體類
定義一個gainAlllp()方法:用于獲得所有IP,并顯示在文本域中的方法
定義一個內(nèi)部類Pinglp Thread,且是線程類。用于判斷給定IP是否為內(nèi)網(wǎng)IP的線程對象
線程類的執(zhí)行邏輯是對指定的IP進行ping 訪問
獲得本機的IP地址和網(wǎng)段
InetAddress host = InetAddress.getLocalHost();// 獲得本機的InetAddress對象 String hostAddress = host.getHostAddress();// 獲得本機的IP地址 int pos = hostAddress.lastIndexOf(".");// 獲得IP地址中最后一個點的位置 String wd = hostAddress.substring(0, pos + 1);// 對本機的IP進行截取,獲得網(wǎng)段
ping***指定的IP地址,獲取ping**結果
// 獲得所ping的IP進程,-w 280是等待每次回復的超時時間,-n 1是要發(fā)送的回顯請求數(shù) Process process = Runtime.getRuntime().exec( "ping " + ip + " -w 280 -n 1"); InputStream is = process.getInputStream();// 獲得進程的輸入流對象 InputStreamReader isr = new InputStreamReader(is);// 創(chuàng)建InputStreamReader對象 BufferedReader in = new BufferedReader(isr);// 創(chuàng)建緩沖字符流對象 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是否為內(nèi)網(wǎng)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進行截取,獲得網(wǎng)段 for (int i = 1; i <= 255; i++) { // 對局域網(wǎng)的IP地址進行遍歷 String ip = wd + i;// 生成IP地址 PingIpThread thread = new PingIpThread(ip);// 創(chuàng)建線程對象 thread.start();// 啟動線程對象 } Set<String> set = pingMap.keySet();// 獲得集合中鍵的Set視圖 Iterator<String> it = set.iterator();// 獲得迭代器對象 while (it.hasNext()) { // 迭代器中有元素,則執(zhí)行循環(huán)體 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("獲得內(nèi)網(wǎng)的所有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是否為內(nèi)網(wǎng)IP的線程對象 public String ip; // 表示IP地址的成員變量 public PingIpThread(String ip) {// 參數(shù)為需要判斷的IP地址 this.ip = ip; } public void run() { try { // 獲得所ping的IP進程,-w 280是等待每次回復的超時時間,-n 1是要發(fā)送的回顯請求數(shù) 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);// 創(chuàng)建InputStreamReader對象 BufferedReader in = new BufferedReader(isr);// 創(chuàng)建緩沖字符流對象 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如何實現(xiàn)獲取內(nèi)網(wǎng)的所有IP地址”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關內(nèi)容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。