使用 com.agile.px.IAgileSession 函数 sendMail 时出现 ClassCastException
ClassCastException when using com.agile.px.IAgileSession function sendMail
接口IAgileSession中有一个函数sendMail。我一直在尝试对其进行测试,但出现了 ClassCastException。该函数采用参数:session.sendMail(IUser[] arg0, String arg1)
我找不到关于此功能的任何信息,它甚至没有列在 Agile 9.3.4 文档中。
有人用过这个功能吗?如果可以,如何正确使用?
toArray 是问题所在:
需要更新如下
IUser[] users = usr.toArray(new IUser[usr.size()]);
接口IAgileSession中有一个函数sendMail。我一直在尝试对其进行测试,但出现了 ClassCastException。该函数采用参数:session.sendMail(IUser[] arg0, String arg1)
我找不到关于此功能的任何信息,它甚至没有列在 Agile 9.3.4 文档中。 有人用过这个功能吗?如果可以,如何正确使用?
toArray 是问题所在:
需要更新如下
IUser[] users = usr.toArray(new IUser[usr.size()]);