importjava.io.IOException;importjavax.swing.JOptionPane;publicclassNeusoft_IP{/***@paramargs*/publicstaticvoidmain(String[]args){Neusoft_IPip=newNeusoft_IP();inti=ip.getI...
import java.io.IOException;
import javax.swing.JOptionPane;
public class Neusoft_IP {
/**
* @param args
*/
public static void main(String[] args)
{
Neusoft_IP ip = new Neusoft_IP();
int i = ip.getIp();
Object[] options={"宿舍","A102","C201","A410","B103"};
Object n=JOptionPane.showInputDialog(null, "你所在的位置?", "IP切换", JOptionPane.DEFAULT_OPTION, null, options, options[0]);
if(n=="C201"){
try {
Runtime.getRuntime().exec( "Netsh interface ip set address \"本地连接\" static 172.26.104."+i+" 255.255.255.0 172.26.104.254 1");
Runtime.getRuntime().exec( "Netsh interface ip set dns name=\"本地连接\" static addr=10.6.6.6 register=PRIMARY");
Runtime.getRuntime().exec( "Netsh interface ip add dns name=\"本地连接\" addr=202.96.128.86 index=2");}
catch (IOException e) {
//TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public int getIp(){
boolean ok = true;
double num = Math.random()*1000;
int ip4 = (int)num;
while(ok){
if(ip4 <=255){
ok = false;
}
else{
ip4 = (int)(Math.random()*1000);
}
}
return ip4;
}
}
上面代码可以更改电脑的IP和DNS,但是不是很完美!在IP地址表的选项为自动获取IP的时候,运行本段代码,是不可以一下子全部更改完全的。第一次是改主DNS,第二次是改IP,然后的第三次后第四次,第五次,才可能改得了副DNS,
现在向各位大大求援,如何让这段代码,在IP地址为自动获取的前提下,运行一次就可以把IP地址,主副DNS改好!
请大家帮帮忙!!!改好后加分!!
你可以写得详细点吗?你改过之后,我都看不明白了....
展开