访问AS400的sys 并从sys里去出我想要的信息 怎么设计啊 谢谢大家
大家好,我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
各位大虾斑竹帮忙啊 谢谢
另外 这个工具我要做出来的话 打算通过web访问 给用户提供一个接口,让用户可以使用访问我这个工具,大家能帮我想想这个工具的gui怎么设计呢?我想着应该是有一个template的文本框,还有一个update的按钮,大家帮我构思下吧 谢谢大家
我是北京ibm cstl的 做ibm i 的