📄 boimportdata2db.java
字号:
package com.tocow.logic;
import java.util.Properties;
import com.tocow.utilities.ConfigInfo;
import com.tocow.xmldbms.XML2DB;
public class BOImportData2DB {
private XML2DB boXML2DB = null;
public BOImportData2DB(){
boXML2DB = new XML2DB();
}
public void xml2db(Properties configProps, String xmlFileName) {
ConfigInfo ci = ConfigInfo.getInstance();
String mapFileFullPath = XMLDBMSConfigPath.getXMLDBMSConfigPath() + "example.map.xml";
String actionFileFullPath = XMLDBMSConfigPath.getXMLDBMSConfigPath() + "example.act.xml";
boXML2DB.import2db(configProps, ci.getStandardPath() + "tempfiles/" + xmlFileName, mapFileFullPath, actionFileFullPath);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -