佳礼资讯网

 找回密码
 注册

ADVERTISEMENT

查看: 792|回复: 2

[JAVA] 如何在 java 里启动 dhclient

[复制链接]
发表于 20-9-2006 02:35 PM | 显示全部楼层 |阅读模式
请问如何在 java 里启动 dhclient ,所以可以得到 IP adress
回复

使用道具 举报


ADVERTISEMENT

 楼主| 发表于 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.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

 

ADVERTISEMENT



ADVERTISEMENT



ADVERTISEMENT

ADVERTISEMENT


版权所有 © 1996-2023 Cari Internet Sdn Bhd (483575-W)|IPSERVERONE 提供云主机|广告刊登|关于我们|私隐权|免控|投诉|联络|脸书|佳礼资讯网

GMT+8, 14-11-2024 03:16 AM , Processed in 0.088398 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表