我有一個包含某些代碼的java類「Test.java」。通過批處理腳本執行java程序
public class Test {
public static void main(String[] args) throws Exception {
testMount();
}
public static void testMount() throws Exception {
System.out.println(System.getProperty("os.name"));
//Windows
String volumeToMount = "\\\\?\\Volume{****-****-******-********}\\";
String mountPoint = "C:\\temp\\";
mountFileSystem("", "", volumeToMount, mountPoint); //This carries out the operation
}
}
我已經編譯了Linux操作系統中的代碼。我想通過批處理腳本(.bat文件)運行編譯後的代碼。我怎麼做?這是什麼語法?如果我必須添加一些外部罐子,在哪裏以及如何將它們插入到.bat文件中的語法中?
當你將項目導出到jar文件中時,你應該在編譯時包含外部jar文件(你應該有一個在eclipse/netbeans中編譯外部庫的選項) – galchen
你說你在Linux下編譯它,但是.bat文件是Windows批處理文件。你想提示Windows還是Linux? – Matteo
我已經在Linux中編譯了它們,但我想在Windows中運行這些編譯的文件。 – hari