AS / 400命令调用 - JT400(Java)

时间:2013-10-24 18:15:24

标签: java ibm-midrange jt400

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);

1 个答案:

答案 0 :(得分:5)

查看SystemValue课程。