查看: 792|回复: 2
|
[JAVA] 如何在 java 里启动 dhclient
[复制链接]
|
|
请问如何在 java 里启动 dhclient ,所以可以得到 IP adress |
|
|
|
|
|
|
|
楼主 |
发表于 21-9-2006 12:31 PM
|
显示全部楼层
我要用 javascript 设计一个功能,那功能是要得到 IP address。
所以想要问如何用 javascript 启动 dhclient ,所以可以得到 IP adress、broadcast、netmask、mac?
还是大家还有什么其他的办法得到 IP ,然后 display 在银幕上吗? |
|
|
|
|
|
|
|
发表于 2-10-2006 05:36 PM
|
显示全部楼层
try try see can or not
import java.io.*;
public class test
{
public test()
{
}
public void getScreenWord()
{
Process p=null;
BufferedReader in=null;
try
{
p=Runtime.getRuntime().exec("ipconfig /all");
}
catch(IOException e)
{
System.out.println(e.getMessage());
}
try
{
in=new BufferedReader(new InputStreamReader(p.getInputStream()));
}
catch(Exception e)
{
System.out.println(e.getMessage());
}
String output=null;
String currLine=null;
try
{
while((currLine=in.readLine())!=null)
output+=currLine+"\n";
}
catch(IOException e)
{
System.out.println(e.getMessage());
}
System.out.println(output);
}
public static void main(String args[])
{
new test().getScreenWord();
}
}
change the command to retrieve different result. |
|
|
|
|
|
|
| |
本周最热论坛帖子
|