2、打开java控制面板,点击:java-安全-编辑站点列表。
3、添加信任“站点”。
4、添加信任“站点”的 *** 作过程。点击“添加”,在“□”处点一下,Ctrl+V(当然必须先在要打开的网址的地址栏上C
trl+C),最后点击“确定”。
package srcimport java.io.*
public class getMac {
public static void main(String[] args) {
try {
Process process = Runtime.getRuntime().exec("ipconfig /all")
InputStreamReader ir = new InputStreamReader(process
.getInputStream())
LineNumberReader input = new LineNumberReader(ir)
String line
while ((line = input.readLine()) != null)
if (line.indexOf("Physical Address") >0) {
String MACAddr = line.substring(line.indexOf("-") - 2)
System.out.println("MAC address = [" + MACAddr + "]")
}
} catch (java.io.IOException e) {
System.err.println("IOException " + e.getMessage())
}
}
}
ipconfig是Windows下命令提示符支持的一个命令,可以查询到你的机器的ip等网络配置
Runtime.getRuntime().exec("ipconfig /all")就是执行该命令
if (line.indexOf("Physical Address") >0)表示如果在line中查找到Physical Address,就继续执行if中的语句,否则如果找不到,line.indexOf("Physical Address")的返回值=-1
请多少给点分,谢谢
可以通过使用IP地址黑名单的方法来拦截国外IP,也可以通过在服务器端设置防火墙来配置哪些IP可以访问服务器,从而拦截国外IP。此外,还可以在Java服务器中使用特定的代码来拦截国外IP,比如使用Java的java.net.InetAddress类来检查当前请求的IP地址是否在一个特定的国家或地区中,如果不是,则拒绝访问。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)