来自Groovy的invokeMethod带参数

时间:2011-09-27 11:09:10

标签: java groovy

我想从下面给出的类

中调用groovy方法
 package infa9

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import com.ABC.csm.context.AppCtxProperties;

import com.ABC.csm.context.AppContext;


 public class LicenseInfo
{
private StringBuffer licenseInformation;

public LicenseInfo() {
    licenseInformation = new StringBuffer();
}

public StringBuffer getLicenseInformation(){
    return licenseInformation;
}

public void fetchLicenseInformation(HashMap<String,String> params,Map env)
{
    ArrayList<String> licenseList = fetchLicenses(params);
    .
    .
    .

}

private ArrayList<String> fetchLicenses(HashMap<String,String> params,Map env)
{

    ArrayList<String>licenseList = new ArrayList<String>();
    .
    .
    .
return licenseList;

}

}

所以这就是我想要做的事情

//getting user parameters
HashMap<String,String> params = IntermediateResults.get("userparams")

//getting environment variables
Map env=AppContext.get(AppCtxProperties.environmentVariables)

Object[] arguments=new Object[2]
arguments.putAt("userparams", params)
arguments.putAt("env", env)

GroovyShell shell = new GroovyShell()
Script infa9LicenseScript = shell.parse("plugins.infa9.LicenseInfo")

   infa9LicenseScript.invokeMethod(fetchLicenseInformation, arguments)
   String lic=(String)infa9LicenseScript.invokeMethod(getLicenseInformation,null)

我是否正确地将参数传递给fetchLicenseInformation?我需要传递HashMap<String,String> ,Map请帮我调用带参数的groovy方法

错误:Exception in thread "main" groovy.lang.MissingPropertyException: No such property: userparams for class: [Ljava.lang.Object;

更新

public List<String> fetchLicenses( Map<String,String> params, Map env ) {
//[ 'a', 'b', 'c' ]
  ArrayList<String>licenseList = new ArrayList<String>();
    String infacmdListLicensesCommand = null;

    if (System.getProperty("os.name").contains("Win"))
    {   infacmdListLicensesCommand = env.get("INFA_HOME")
                + "/isp/bin/infacmd.bat ListLicenses -dn "
                + params.get("dn") + " -un " + params.get("un") + " -pd "
                + params.get("pd") + " -sdn " + params.get("sdn") + " -hp "
                + params.get("dh") + ":" + params.get("dp");}
    else
    {   infacmdListLicensesCommand = env.get("INFA_HOME")
                + "/isp/bin/infacmd.sh ListLicenses -dn "  //this is line no 71, where exception is thrown
                + params.get("dn") + " -un " + params.get("un") + " -pd "
                + params.get("pd") + " -sdn " + params.get("sdn") + " -hp "
                + params.get("dh") + ":" + params.get("dp");}

    try {
        Process proc = Runtime.getRuntime().exec(infacmdListLicensesCommand);

        InputStream stdin = proc.getInputStream();
        InputStreamReader isr = new InputStreamReader(stdin);
        BufferedReader br = new BufferedReader(isr);
        String line = null;
        while ((line = br.readLine()) != null) {
            System.out.println(line);
            licenseList.add(line);
        }
        int exitVal = proc.waitFor();
        System.out.println("Process exit value is: " + exitVal);

    }catch (IOException io) {
        io.printStackTrace();
    }catch (InterruptedException ie) {
        ie.printStackTrace();
    } /* end catch */
return licenseList;
 }

异常 Exception in thread "main" groovy.lang.MissingMethodException: No signature of method: java.lang.String.positive() is applicable for argument types: () values: [] Possible solutions: notify(), tokenize(), size() at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unwrap(ScriptBytecodeAdapter.java:55) at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unaryPlus(ScriptBytecodeAdapter.java:764) at infa9.LicenseInfo.fetchLicenses(Infa9LicensesUtil.groovy:71)

1 个答案:

答案 0 :(得分:2)

是的......我在文件夹LicenseInfo.groovy中创建了这个groovy脚本./test/

package test

public class LicenseInfo {
  StringBuffer licenseInformation

  public LicenseInfo() {
    licenseInformation = new StringBuffer()
  }

  public void fetchLicenseInformation( Map<String,String> params, Map env ) {
    List<String> licenseList = fetchLicenses( params, env )
    println "List is $licenseList"
  }

  public List<String> fetchLicenses( Map<String,String> params, Map env ) {
    [ 'a', 'b', 'c' ]
  }
}

在当前文件夹./内,我创建了这个groovy脚本Test.groovy

// Make some params...
def params = [ name:'tim', value:'text' ]

// Fake an env Map
def env = [ something:'whatever' ]

// Load the class from the script
def liClass = new GroovyClassLoader().parseClass( new File( 'test/LicenseInfo.groovy' ) )

// Run the method
liClass.newInstance().fetchLicenseInformation( params, env )

当我执行命令

groovy Test.groovy

打印出来:

List is [a, b, c]

更新后编辑

您获得的positive错误是由于Groovy解析器的工作方式...加入字符串{{1}时,您不能将+放在下一行的开头}必须在前一行上尾随(因为分号是groovy中行尾的可选分号,解析器无法知道你正在添加到前一行)

这将有效:

+

这将是更多 Groovy 做同样事情的方式:

if (System.getProperty("os.name").contains("Win")) {
  infacmdListLicensesCommand = env.get("INFA_HOME") + "/isp/bin/infacmd.bat ListLicenses -dn " +
                               params.get("dn") + " -un " + params.get("un") + " -pd " +
                               params.get("pd") + " -sdn " + params.get("sdn") + " -hp " +
                               params.get("dh") + ":" + params.get("dp")
}
else {
  infacmdListLicensesCommand = env.get("INFA_HOME") + "/isp/bin/infacmd.sh ListLicenses -dn " +
                               params.get("dn") + " -un " + params.get("un") + " -pd " +
                               params.get("pd") + " -sdn " + params.get("sdn") + " -hp " +
                               params.get("dh") + ":" + params.get("dp")
}