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

she*_*anD 4 java jt400 ibm-midrange

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);
Run Code Online (Sandbox Code Playgroud)

Buc*_*bro 5

看看SystemValue类.

  • 是.您想要的系统值是QSRLNBR (3认同)