我需要獲取MySQL的安裝路徑才能執行導出並通過java代碼導入數據庫。目前正在使用eclipse。我需要在一個字符串變量「mySqlPath」中獲取安裝路徑。獲取MySQL安裝路徑
File fMysqlPath = new File("C:\\Program Files\\MySQL\\MySQL Server 5.1\\bin\\");
String executeCmd = "mysqldump -u " + Constants.DB_USER + " -p" +
Constants.DB_PASSWORD + " " + Constants.DB_NAME + " -r " +
FilePath + "\\" + FileName;
Process runtimeProcess = Runtime.getRuntime().exec(executeCmd, null, fMysqlPath);
這就是我所做的。這有一個依賴性問題。
我該如何解決這個問題?
你到底面臨什麼問題? – gprathour
@GPS當我在另一個系統中運行程序時,mysql路徑出錯。 – Gapchoos