本文實(shí)例為大家分享了java實(shí)現(xiàn)獲取本機(jī)IP地址的具體代碼,供大家參考,具體內(nèi)容如下
創(chuàng)新互聯(lián)專注于企業(yè)營(yíng)銷型網(wǎng)站建設(shè)、網(wǎng)站重做改版、蘿北網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5頁(yè)面制作、商城開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為蘿北等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
原因:同一臺(tái)機(jī)子上開著兩個(gè)web工程,現(xiàn)在有需求需要保證兩個(gè)項(xiàng)目之間交互的安全問題。因?yàn)橛袀€(gè)舊的項(xiàng)目,所以盡量不做改動(dòng)。只能在新項(xiàng)目中做改動(dòng)。
處理辦法:獲取本地的IP地址,有請(qǐng)求進(jìn)來時(shí)查看請(qǐng)求的來源,只有來源是本地IP的才予以通過。
代碼如下:
/** * 任務(wù)調(diào)度調(diào)用攔截器 */ public class TaskControlInterceptor implements Interceptor { //存放本機(jī)IP地址列表(包括ipv4和ipv6) private static SetlocalHostList = new HashSet<>(); @Override public void intercept(Invocation inv) { Controller controller = inv.getController(); HttpServletRequest request = controller.getRequest(); /* 獲取本機(jī)的IP地址列表 請(qǐng)求的時(shí)候判斷來源IP地址是否在該列表中,如果不在的話則不予通過 */ if (localHostList.size() == 0) { localHostList = getIpAddress(); } if (StringUtils.isNotBlank(request.getRemoteAddr())) { if (!localHostList.contains(request.getRemoteAddr())) { Result result = new Result(new Error("450","非法的請(qǐng)求,請(qǐng)求來源IP地址不是本機(jī)")); controller.getResponse().setStatus(450); controller.renderJson(result); return; } } else { Result result = new Result(new Error("450","非法的請(qǐng)求,請(qǐng)求來源IP地址為空")); controller.getResponse().setStatus(450); controller.renderJson(result); return; } inv.invoke(); } /** * 獲取本機(jī)的IP地址(包括ipv4和ipv6) *
包含回環(huán)地址127.0.0.1和0:0:0:0:0:0:0:1 */ private static SetgetIpAddress() { Set ipList = new HashSet<>(); try { Enumeration allNetInterfaces = NetworkInterface.getNetworkInterfaces(); InetAddress ip = null; while (allNetInterfaces.hasMoreElements()) { NetworkInterface netInterface = (NetworkInterface) allNetInterfaces.nextElement(); //排除虛擬接口和沒有啟動(dòng)運(yùn)行的接口 if (netInterface.isVirtual() || !netInterface.isUp()) { continue; } else { Enumeration 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; } }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。