iCAx开思网

标题: 如何从IMAN中提取BOM? [打印本页]

作者: young102    时间: 2005-7-29 08:57
标题: 如何从IMAN中提取BOM?
怎样从IMAN中提取BOM?
急,只要给个思路.
应该用什么函数?
作者: aquino    时间: 2005-7-29 16:55
跟一般的树一样的遍历
  1. private void bianliBOM(IMANComponentBOMLine bl)
  2.   {
  3.      try
  4.      {
  5.          IMANComponentBOMLine the_line = bl;
  6.          AIFComponentContext children[] = the_line.getChildren();
  7.          if(children == null)
  8.          {
  9.              //Process_BOM_Line_here
  10.              return;
  11.          }
  12.          for(int i = 0; i < children.length; i++)
  13.          {
  14.              IMANComponentBOMLine child_line = (IMANComponentBOMLine)children[i].getComponent();
  15.              bianliBOM(child_line);
  16.          }
  17.   
  18.      }
  19.      catch(IMANException e)
  20.      {
  21.          e.dump();
  22.      }
  23.   }
复制代码

  
young102 wrote:
怎样从IMAN中提取BOM?  
  急,只要给个思路.  
  应该用什么函数?
[code][/code]
作者: albert.zou    时间: 2005-7-30 09:34
使用 %IMAN_BIN%\ps_traverse.exe




欢迎光临 iCAx开思网 (https://www.icax.org/) Powered by Discuz! X3.3