本文整理了Java中org.pentaho.di.core.Const.getKettleLocalRepositoriesFile()
方法的一些代码示例,展示了Const.getKettleLocalRepositoriesFile()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Const.getKettleLocalRepositoriesFile()
方法的具体详情如下:
包路径:org.pentaho.di.core.Const
类名称:Const
方法名:getKettleLocalRepositoriesFile
[英]Returns the path to the Kettle local (current directory) repositories XML file.
[中]返回壶穴本地(当前目录)存储库XML文件的路径。
代码示例来源:origin: pentaho/pentaho-kettle
String getKettleLocalRepositoriesFile() {
return Const.getKettleLocalRepositoriesFile();
}
代码示例来源:origin: pentaho/pentaho-kettle
/**
* Returns the full path to the Kettle repositories XML file.
*
* @return The Kettle repositories file.
*/
public static String getKettleUserRepositoriesFile() {
return getKettleDirectory() + FILE_SEPARATOR + getKettleLocalRepositoriesFile();
}
内容来源于网络,如有侵权,请联系作者删除!