iCAx开思网
标题:
如何从IMAN中提取BOM?
[打印本页]
作者:
young102
时间:
2005-7-29 08:57
标题:
如何从IMAN中提取BOM?
怎样从IMAN中提取BOM?
急,只要给个思路.
应该用什么函数?
作者:
aquino
时间:
2005-7-29 16:55
跟一般的树一样的遍历
private void bianliBOM(IMANComponentBOMLine bl)
{
try
{
IMANComponentBOMLine the_line = bl;
AIFComponentContext children[] = the_line.getChildren();
if(children == null)
{
//Process_BOM_Line_here
return;
}
for(int i = 0; i < children.length; i++)
{
IMANComponentBOMLine child_line = (IMANComponentBOMLine)children[i].getComponent();
bianliBOM(child_line);
}
}
catch(IMANException e)
{
e.dump();
}
}
复制代码
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