<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
在進行網路程式設計時,有時需要對區域網的所有主機進行遍歷,為此需要獲得內網的所以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地址的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45