blob: 8c2344d1dd025b5c62d548de3ccca30a57191967 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package osDomains;
import java.util.Properties;
import nis.nms.util.IpCovert;
public class Test {
/**
* @time Jul 5, 2012-5:49:01 PM
* @param args
*/
public static void main(String[] args) {
// IpCovert covert = new IpCovert();
// System.out.println(""+covert.ipToLong("10.0.6.111"));
// System.out.println(""+covert.ipToLong("10.0.6.122"));
// System.out.println(""+covert.ipToLong("10.0.6.4"));
Properties properties = new Properties();
properties.put("web_uuid", "");
}
}
|