gpt4 book ai didi

java - ProGuard 在我的 JavaFX 应用程序中找不到主要方法

转载 作者:行者123 更新时间:2023-11-30 08:48:48 24 4
gpt4 key购买 nike

我制作了一个简单的 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。

最佳答案

问题似乎是因为您没有使用 MANIFEST.MF 来指定哪个是主类(我认为这是因为您通过 eclipse exporter 导出了 JAR)

您可以通过尝试在配置中添加这一行来解决此问题。

-keepclasseswithmembers public class com.javafx.main.Main, org.eclipse.jdt.internal.jarinjarloader.*, HelloWorld {
public static void main(java.lang.String[]);
}

关于java - ProGuard 在我的 JavaFX 应用程序中找不到主要方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31751945/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com