访问AS400的sys 并从sys里去出我想要的信息 怎么设计啊 谢谢大家

发布于 2022-08-28 13:40:26 字数 5262 浏览 21 评论 2

大家好,我在Ibm最近用需要自动升级我做的一些template(我是搞jvm的,template就是以一台正确安装jdk的机器为基准,按照里面存在的文件以及ptf做成一个标准,然后那这个标准去检测用户的机器,看是不是正确的安装了我们的jdk). 步骤是:1 连接到good sys, 取得更新的信息,(文件啊,ptf什么的),2.将取的更新信息写入现有template里的xml文件,再将这个template保存,得到更新的template.
我现在设计好了连接的good sys的代码:
public class CmdCall
{
   public static void main(String[] args)
   {
      // Like other Java classes, IBM Toolbox for Java classes
      // throw exceptions when something goes wrong.  These must
      // be caught by programs that use IBM Toolbox for Java.
      try  
      {
         AS400 system  = new AS400("sysname","userid","password");               

         CommandCall cc = new CommandCall(system);  
           
         cc.run("CRTLIB MYLIB");

         AS400Message[] ml = cc.getMessageList();  

         for (int i=0; i<ml.length; i++)
         {                                               
            System.out.println(ml[i].getText());      
         }
      }
      catch (Exception e)
      {
         e.printStackTrace();
      }
      
      System.exit(0);
   }
}
这样可以连接到那个sys,可是这个代码能实现取到我想要的更新信息吗?

下面是将取来的信息添加到xml的代码:
package com.ibm.are.spi.test.sample;

import java.io.File;

import com.ibm.are.spi.DeploymentTemplate;
import com.ibm.are.spi.rule.base.RuleSet;
import com.ibm.are.spi.rule.plugin.ptf.PtfCheckInfo;
import com.ibm.are.spi.rule.plugin.ptf.PtfRuleSet;
import com.ibm.are.spi.rule.template.plugin.PluginConfiguration;

public class DemoUpdateTemplate {

        public static void main(String[] args) throws Exception {

                // import an existing template to the workspace.
                // The workspace is defined via DirectoryHelper.setSysTempPath.
                // We use default path here.
                DeploymentTemplate t = new DeploymentTemplate(new File("/home/MyTemplate1.jar"));
               
                // get the plugin configuration. Here we need the PTF plugin. The corresponding
                // configuration class is PtfRuleSet.
                PluginConfiguration conf = t.getPluginConfig(RuleSet.getConsumerClassName(PtfRuleSet.class));

                // get the first configuration file for the PTF plugin
                PtfRuleSet ptfRules = (PtfRuleSet) conf.getSimpleRuleSets().get(0);
               
                // you can use this method to get all current simple checks. We do not
                // need it here.
                //List<PtfCheckInfo> units = ptfRules.getAllSimpleCheckInfo();
               
                // add a new check item.
                ptfRules.addChildUnit(new PtfCheckInfo("SI33333", true, "Error"));
               
                // Save the template to a new file.
                // (Note that the default DeploymentTemplate.save() method will save the template into the workspace.)
                t.save("/home/MyTemplate2.jar");
        }

}

可是我如何将取来信息 与 ptfRules.addChildUnit(new PtfCheckInfo("SI33333", true, "Error")); 联系在一起呢 让他自如的把这个信息写进去呢? 希望大家可以帮我啊 谢谢大家

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

大姐,你呐 2022-09-04 05:57:05

各位大虾斑竹帮忙啊 谢谢

誰認得朕 2022-08-30 10:22:25

另外 这个工具我要做出来的话 打算通过web访问 给用户提供一个接口,让用户可以使用访问我这个工具,大家能帮我想想这个工具的gui怎么设计呢?我想着应该是有一个template的文本框,还有一个update的按钮,大家帮我构思下吧 谢谢大家

我是北京ibm cstl的 做ibm i 的

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文