我制作了一个简单的JavaFX程序,似乎无法使用ProGuard对其进行模糊处理。
我已经关注了这个问题:Obfuscating JavaFX application
这是我的代码:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.AnchorPane;
import javafx.stage.Stage;
public class HelloWorld extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
AnchorPane root = new AnchorPane();
Scene scene = new Scene(root, 300, 250);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
}
根据该问题的答案,这应该是我的配置文件:
-injars /Users/me/Desktop/MyProgram.jar
-outjars /Users/me/Desktop/Obfuscated.jar
-libraryjars <java.home>/lib/rt.jar
-libraryjars <java.home>/lib/ext/jfxrt.jar
-dontshrink
-dontoptimize
-flattenpackagehierarchy ''
-keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,LocalVariable*Table,*Annotation*,Synthetic,EnclosingMethod
-adaptresourcefilecontents **.fxml,**.properties,META-INF/MANIFEST.MF
-keepclassmembernames class * {
@javafx.fxml.FXML *;
}
# Keep - Applications. Keep all application classes, along with their 'main'
# methods.
-keepclasseswithmembers public class com.javafx.main.Main, HelloWorld {
public static void main(java.lang.String[]);
}
但是在尝试运行.JAR程序时出现以下错误:
Error: Main method not found in class a.B, please define the main method as:
public static void main(String[] args)
or a JavaFX application class must extend javafx.application.Application
根据另一个问题:Error: Main method not found in class Calculate, please define the main method as: public static void main(String[] args)
我需要我的班级有一个main
方法与身体。显然我已经知道了,正如你从上面的代码中看到的那样。
那我做错了什么?我使用的是Java 8。
答案 0 :(得分:2)
似乎问题是由于您没有使用MANIFEST.MF
来指定哪个是主类(我认为这是因为您通过eclipse导出器导出了JAR)
您可以尝试在配置中添加此行来解决此问题。
-keepclasseswithmembers public class com.javafx.main.Main, org.eclipse.jdt.internal.jarinjarloader.*, HelloWorld {
public static void main(java.lang.String[]);
}