forked from demo/example
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
472 B
23 lines
472 B
6 years ago
|
package com.fr.function;
|
||
|
|
||
|
import com.fr.script.AbstractFunction;
|
||
|
|
||
|
import java.net.InetAddress;
|
||
|
|
||
|
public class GETIP extends AbstractFunction {
|
||
|
|
||
|
@Override
|
||
|
public Object run(Object[] objects) {
|
||
|
try {
|
||
|
InetAddress ia = InetAddress.getLocalHost();
|
||
|
return ia.getHostAddress();
|
||
|
} catch (Exception e) {
|
||
|
return e.getMessage();
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public static InetAddress getInetAddress() {
|
||
|
return null;
|
||
|
}
|
||
|
}
|