我在项目的src文件夹中创建了一个类。当用户单击主类上的按钮时,我希望它将另一个类(在同一个项目/ src文件夹中随机的.java)编译成一个jar文件并将其保存到它们的c盘中。在编译之前,我还需要更改正在编译的类中的变量。
示例:
package Whatever;
//All of my imports...
public static String replaceVar = "This variable in this class needs to be replaced from the other class before being compiled into a .jar on the users C drive!";
public class StubClass {
public static void main(String[] args) {
System.out.println(replaceVar);
}
}
需要任何帮助。提前谢谢!