01)我试图使用命令调用方法获取IBM / AS400 Serial no。代码正在工作因为它没有任何错误或异常。我有事情缺失了。帮我纠正它。
02)是否有任何方法可以使用jt400(java)获得AS / 400序列号。我找到了getSerialNum()
方法。但com.ibm.cics.server.CertificateInfo
导入是例外。也帮助我纠正它(如果有人能告诉我如何使用getSerialNum()
方法获得序列号,这对我来说真的很有用)
提前感谢!
AS400 system = new AS400();
CommandCall command = new CommandCall(system);
try
{
// Run the command "DSPSYSVAL" and parameter value for "SYSVAL" is "QSRLNBR"
if (command.run("DSPSYSVAL QSRLNBR") != true)
{
// Note that there was an error.
System.out.println("Command failed!");
}else{
// Show the messages (returned whether or not there was an error.)
AS400Message[] messagelist = command.getMessageList();
for (int i = 0; i < messagelist.length; ++i)
{
// Show each message.
System.out.println(messagelist[i].getText());
}
}
}
catch (Exception e)
{
System.out.println("Command " + command.getCommand() + " issued an exception!");
e.printStackTrace();
}
// Done with the system.
System.out.println("End!");
system.disconnectService(AS400.COMMAND);