AS / 400创建Journal JT400(Java)

时间:2017-03-28 05:57:14

标签: java command ibm-midrange

我想使用java程序为我的物理文件创建日志。

a)我们如何通过传递模式名称来获取现有的期刊名称和描述。    例如:DSPFD FILE(SCHEMA_NAME / TABLE_NAME)命令正在成功执行,但在java控制台中没有输出。

b)我们如何读取表的实际名称并在java控制台中显示。

提前致谢。

/**
 * Test program to test the AS/400 Command from Java.
 */

public static void main(String[] args) {

    String server = "SERVER1";
    String user = "USER_ID";
    String pass = "PWD_ABC";

    String getjournalcmd = "DSPFD FILE(SCHEMA_NAME/TABLE_NAME) OUTPUT(*PRINT)";
    String createjournalcmd = "STRJRNPF FILE(SCHEMA_NAME/TABLE_NAME) JRN(SCH_JRN_LIB_NAME/JRN_NAME)";

    AS400 as400 = null;
    try {
        // Create an AS400 object
        as400 = new AS400(server, user, pass);

        // Create a Command object
        CommandCall command = new CommandCall(as400);

        // Run the command.
        System.out.println("Executing: " + getjournalcmd);
        boolean success = command.run(getjournalcmd);

        if (success) {
            System.out.println("Command Executed Successfully.");
        } else {
            System.out.println("Command Failed!");
        }

        // Get the command results
        AS400Message[] messageList1 = command.getMessageList();
        System.out.println(messageList1.length);
        for (AS400Message message : messageList1) {
            System.out.println(message.getText());
        }

        // Create journal
        System.out.println("Executing: " + createjournalcmd);
        boolean success1 = command.run(createjournalcmd);

        if (success1) {
            System.out.println("Command Executed Successfully.");
        } else {
            System.out.println("Command Failed!");
        }

        // Get the command results
        AS400Message[] messageList = command.getMessageList();
        System.out.println(messageList.length);
        for (AS400Message message : messageList) {
            System.out.println(message.getText());
        }
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try {
            // Make sure to disconnect
            as400.disconnectAllServices();
        } catch (Exception e) {
        }
    }
    System.exit(0);
}

2 个答案:

答案 0 :(得分:1)

IBM Toolbox for Java有一个类来检索该信息。 Here is the Javadocs。您将不得不使用有问题的对象的IFS名称,该名称看起来像/QSYS.LIB/libraryname.LIB/filename.FILE

如果我想这样做,我会尝试这样的事情:

String journal = "";
FileAttributes fa = new FileAttributes(myConnection, ifsPath);
if (fa.isJournalingStatus()) {
    journal = fa.getJournal();
}

答案 1 :(得分:0)

DSPFD输出(* print)生成报告,但不会将任何内容返回给调用者。您可以使用QDBRTVFD API将值返回给调用者Java方法。另一种方法是在IBM i(AS400)后端上创建一个程序,该程序可以获取您需要的信息并具有简化的参数结构。