本文實(shí)例為大家分享了java實(shí)現(xiàn)獲取本機(jī)IP地址的具體代碼,供大家參考,具體內(nèi)容如下
創(chuàng)新互聯(lián)專注于企業(yè)營銷型網(wǎng)站建設(shè)、網(wǎng)站重做改版、蘿北網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、H5頁面制作、商城開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為蘿北等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
原因:同一臺機(jī)子上開著兩個web工程,現(xiàn)在有需求需要保證兩個項目之間交互的安全問題。因?yàn)橛袀€舊的項目,所以盡量不做改動。只能在新項目中做改動。
處理辦法:獲取本地的IP地址,有請求進(jìn)來時查看請求的來源,只有來源是本地IP的才予以通過。
代碼如下:
/** * 任務(wù)調(diào)度調(diào)用攔截器 */ public class TaskControlInterceptor implements Interceptor { //存放本機(jī)IP地址列表(包括ipv4和ipv6) private static Set<String> localHostList = new HashSet<>(); @Override public void intercept(Invocation inv) { Controller controller = inv.getController(); HttpServletRequest request = controller.getRequest(); /* 獲取本機(jī)的IP地址列表 請求的時候判斷來源IP地址是否在該列表中,如果不在的話則不予通過 */ if (localHostList.size() == 0) { localHostList = getIpAddress(); } if (StringUtils.isNotBlank(request.getRemoteAddr())) { if (!localHostList.contains(request.getRemoteAddr())) { Result result = new Result(new Error("450","非法的請求,請求來源IP地址不是本機(jī)")); controller.getResponse().setStatus(450); controller.renderJson(result); return; } } else { Result result = new Result(new Error("450","非法的請求,請求來源IP地址為空")); controller.getResponse().setStatus(450); controller.renderJson(result); return; } inv.invoke(); } /** * 獲取本機(jī)的IP地址(包括ipv4和ipv6) * <br>包含回環(huán)地址127.0.0.1和0:0:0:0:0:0:0:1 */ private static Set<String> getIpAddress() { Set<String> ipList = new HashSet<>(); try { Enumeration<NetworkInterface> allNetInterfaces = NetworkInterface.getNetworkInterfaces(); InetAddress ip = null; while (allNetInterfaces.hasMoreElements()) { NetworkInterface netInterface = (NetworkInterface) allNetInterfaces.nextElement(); //排除虛擬接口和沒有啟動運(yùn)行的接口 if (netInterface.isVirtual() || !netInterface.isUp()) { continue; } else { Enumeration<InetAddress> addresses = netInterface.getInetAddresses(); while (addresses.hasMoreElements()) { ip = addresses.nextElement(); if (ip != null && (ip instanceof Inet4Address || ip instanceof Inet6Address)) { ipList.add(ip.getHostAddress()); } } } } } catch (Exception e) { e.printStackTrace(); } return ipList; } }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
本文名稱:java如何獲取本機(jī)IP地址
當(dāng)前地址:http://aaarwkj.com/article40/pcsoho.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、定制網(wǎng)站、建站公司、標(biāo)簽優(yōu)化、靜態(tài)網(wǎng)站、網(wǎng)站收錄
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)