У меня есть два пакета в проекте Java.
Package A
имеет класс с именем App.java
. Этот класс принимает разбор аргументов (используя apache commons-cli lib).
Код
CommandLineParser clip = new DefaultParser();
Options options = new Options();
options.addOption("zp", "ZipFilePath", true, "Mention the path where zip file is present");
options.addOption("d", "dbPropFile", true, "Mention the path database property file");
options.addOption("h", "help", false, "This mentions how to use this utility");
CommandLine cli = clip.parse(options, args);
File dbpropFile = new File(cli.getOptionValue("d"));
Теперь, как я могу импортировать переменную dbPropFile
в другой класс (SQLServerConn. java) пакета B?
package com.abc.integra.db.B;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.util.Properties;
import com.abc.integra.db.A.LoadDBProps;
public class SQLServerConn {
public static Connection dbConn;
public static Properties props;
public static Connection getConn() {
try {
final String drivername = (String)SQLServerConn.props.get("drivername");
final String url = (String)SQLServerConn.props.get("url");
final String dbname = (String)SQLServerConn.props.get("dbname");
final String username = (String)SQLServerConn.props.get("username");
final String password = (String)SQLServerConn.props.get("password");
//jasypt final String password1 = (String)SQLServerConn.props.getProperty(key);
Class.forName(drivername); //registering the driver before connection with the DB
SQLServerConn.dbConn = DriverManager.getConnection(url + ";databaseName=" + dbname + ";user=" + username + ";password=" + password);
} catch (Exception e) {
System.out.println("Exception: " + e);
}
return SQLServerConn.dbConn;
}
static {
SQLServerConn.dbConn = null;
try {
final LoadDBProps lp = new LoadDBProps();
SQLServerConn.props = lp.loadDBProperties(filename);
} catch (IOException e) {
e.printStackTrace();
}
}
}
Я хочу подставить значение переменной dbpropFile
вместо filename
в разделе свойств загрузки.