System.setProperty("prism.allowhidpi", "false") 行不通?
System.setProperty("prism.allowhidpi", "false") does not work?
我试图在我的 JavaFX 应用程序中禁用 Windows 显示缩放(以及其他 OS)。在 IntelliJ 运行 配置 VM 选项中设置 -Dprism.allowhidpi="false"
有效,但在代码中设置系统 属性 无效。我想在代码中设置它,这样它就可以在任何 JVM 设置中工作,比如 GraalVM / Gluon Substrate。
这是 JavaFX 中的错误还是如何在代码中使用它?以下示例不起作用,如果在 Windows:
中设置缩放比例,则舞台会缩放
public class Main extends Application {
public static void main(String[] args) {
System.setProperty("prism.allowhidpi", "false");
launch(args);
}
@Override
public void start(Stage stage) {
stage.setWidth(1280);
stage.setHeight(720);
Scene scene = new Scene(new Label("SCALE TEST"));
stage.setScene(scene);
stage.show();
}
}
编辑:
如评论中所述,创建一个单独的启动器 class 设置 属性 然后调用应用程序 class 是可行的。但是,它似乎不适用于 Gluon Substrate。这是我项目的相关部分。我还添加了另外两个 prism 属性,以确保新的 main class 在 Substrate 中正确加载,并且另外两个属性确实有效。如果我 运行 mvn javafx:run
关闭缩放,如果我 运行 mvn client:build
和 mvn client:run
缩放打开但其他一切都一样。
public class Main {
public static void main(String[] args) {
System.setProperty("prism.allowhidpi", "false"); // doesn't work with Substrate
System.setProperty("prism.lcdtext", "false"); // works
System.setProperty("prism.subpixeltext", "false"); // works
MainFXML.run(args);
}
}
应用程序
public class MainFXML extends Application {
@Override
public void start(Stage stage) throws Exception {
String fxmlFile = "/fxml/FXMLDocument.fxml";
FXMLLoader loader = new FXMLLoader(getClass().getResource(fxmlFile));
Parent root = loader.load();
root.getStylesheets().add(getClass().getResource("/styles/Style.css").toString());
FXMLDocumentController gui = (FXMLDocumentController) loader.getController();
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
stage.setResizable(false);
// create logic class etc
}
public static void run(String[] args) {
launch(args);
}
}
Pom
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ank</groupId>
<artifactId>PROJ</artifactId>
<name>PROJ</name>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<finalName>PROJ</finalName>
<plugins>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.3</version>
<configuration>
<mainClass>ank.fxml.Main</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>com.gluonhq</groupId>
<artifactId>client-maven-plugin</artifactId>
<version>0.1.38</version>
<configuration>
<mainClass>ank.fxml.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>15</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>15</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.11</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.2</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
</dependencies>
</project>
我还尝试将 pom 文件中的属性设置为 nativeImageArgs,但 none 有效。
<plugin>
<groupId>com.gluonhq</groupId>
<artifactId>client-maven-plugin</artifactId>
<version>0.1.38</version>
<configuration>
<mainClass>ank.fxml.Main</mainClass>
<nativeImageArgs>
<arg>-Dprism.allowhidpi=false</arg>
<arg>-Dprism.lcdtext=false</arg>
<arg>-Dprism.subpixeltext=false</arg>
</nativeImageArgs>
</configuration>
</plugin>
看来你想在GUI启动前为你的应用设置系统环境,有几种方法:
1.use 启动应用的脚本
#sh or cmd
#set system environment
#java -jar your_app_jar
2.use 原生加载器
loader[set system environment]->your app
3.use 带有 ProcessBuilder 的 java 加载程序来启动您的应用程序
ProcessBuilder pb = new ProcessBuilder("your app command");
Map<String, String> envMap = pb.environment();
envMap.put("propName", "propValue");
pb.start();
4.use JNI 或本机命令加上 java 应用程序中的代理
//in premain
JNI[set system environment]
or
invoke native command[set system environment]
5.use "java.lang.ProcessEnvironment" 加上 java 代理就可以了
//in premain
Class<?> pe = Class.forName("java.lang.ProcessEnvironment");
Method getenv = pe.getDeclaredMethod("getenv", String.class);
getenv.setAccessible(true);
Field props = pe.getDeclaredField("theCaseInsensitiveEnvironment");
props.setAccessible(true);
Map<String, String> env = (Map<String, String>) props.get(null);
env.put("propName", "propValue");
经过大量搜索,我设法让它工作,至少在 Windows 上是这样。不使用 prism.allowhidpi
标志,将 glass.win.uiScale
设置为 100% 就可以忽略 Windows 缩放。这有效地在代码中设置它并将其作为参数传递。
public class Main {
public static void main(String[] args) {
System.setProperty("glass.win.uiScale", "100%"); // instead of allowhidpi
MainFXML.run(args);
}
}
请注意,将 prism.allowhidpi
设置为 false 将使我测试的缩放覆盖无效。
我试图在我的 JavaFX 应用程序中禁用 Windows 显示缩放(以及其他 OS)。在 IntelliJ 运行 配置 VM 选项中设置 -Dprism.allowhidpi="false"
有效,但在代码中设置系统 属性 无效。我想在代码中设置它,这样它就可以在任何 JVM 设置中工作,比如 GraalVM / Gluon Substrate。
这是 JavaFX 中的错误还是如何在代码中使用它?以下示例不起作用,如果在 Windows:
中设置缩放比例,则舞台会缩放public class Main extends Application {
public static void main(String[] args) {
System.setProperty("prism.allowhidpi", "false");
launch(args);
}
@Override
public void start(Stage stage) {
stage.setWidth(1280);
stage.setHeight(720);
Scene scene = new Scene(new Label("SCALE TEST"));
stage.setScene(scene);
stage.show();
}
}
编辑:
如评论中所述,创建一个单独的启动器 class 设置 属性 然后调用应用程序 class 是可行的。但是,它似乎不适用于 Gluon Substrate。这是我项目的相关部分。我还添加了另外两个 prism 属性,以确保新的 main class 在 Substrate 中正确加载,并且另外两个属性确实有效。如果我 运行 mvn javafx:run
关闭缩放,如果我 运行 mvn client:build
和 mvn client:run
缩放打开但其他一切都一样。
public class Main {
public static void main(String[] args) {
System.setProperty("prism.allowhidpi", "false"); // doesn't work with Substrate
System.setProperty("prism.lcdtext", "false"); // works
System.setProperty("prism.subpixeltext", "false"); // works
MainFXML.run(args);
}
}
应用程序
public class MainFXML extends Application {
@Override
public void start(Stage stage) throws Exception {
String fxmlFile = "/fxml/FXMLDocument.fxml";
FXMLLoader loader = new FXMLLoader(getClass().getResource(fxmlFile));
Parent root = loader.load();
root.getStylesheets().add(getClass().getResource("/styles/Style.css").toString());
FXMLDocumentController gui = (FXMLDocumentController) loader.getController();
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
stage.setResizable(false);
// create logic class etc
}
public static void run(String[] args) {
launch(args);
}
}
Pom
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ank</groupId>
<artifactId>PROJ</artifactId>
<name>PROJ</name>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<finalName>PROJ</finalName>
<plugins>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.3</version>
<configuration>
<mainClass>ank.fxml.Main</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>com.gluonhq</groupId>
<artifactId>client-maven-plugin</artifactId>
<version>0.1.38</version>
<configuration>
<mainClass>ank.fxml.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>15</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>15</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.11</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.2</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
</dependencies>
</project>
我还尝试将 pom 文件中的属性设置为 nativeImageArgs,但 none 有效。
<plugin>
<groupId>com.gluonhq</groupId>
<artifactId>client-maven-plugin</artifactId>
<version>0.1.38</version>
<configuration>
<mainClass>ank.fxml.Main</mainClass>
<nativeImageArgs>
<arg>-Dprism.allowhidpi=false</arg>
<arg>-Dprism.lcdtext=false</arg>
<arg>-Dprism.subpixeltext=false</arg>
</nativeImageArgs>
</configuration>
</plugin>
看来你想在GUI启动前为你的应用设置系统环境,有几种方法:
1.use 启动应用的脚本
#sh or cmd
#set system environment
#java -jar your_app_jar
2.use 原生加载器
loader[set system environment]->your app
3.use 带有 ProcessBuilder 的 java 加载程序来启动您的应用程序
ProcessBuilder pb = new ProcessBuilder("your app command");
Map<String, String> envMap = pb.environment();
envMap.put("propName", "propValue");
pb.start();
4.use JNI 或本机命令加上 java 应用程序中的代理
//in premain
JNI[set system environment]
or
invoke native command[set system environment]
5.use "java.lang.ProcessEnvironment" 加上 java 代理就可以了
//in premain
Class<?> pe = Class.forName("java.lang.ProcessEnvironment");
Method getenv = pe.getDeclaredMethod("getenv", String.class);
getenv.setAccessible(true);
Field props = pe.getDeclaredField("theCaseInsensitiveEnvironment");
props.setAccessible(true);
Map<String, String> env = (Map<String, String>) props.get(null);
env.put("propName", "propValue");
经过大量搜索,我设法让它工作,至少在 Windows 上是这样。不使用 prism.allowhidpi
标志,将 glass.win.uiScale
设置为 100% 就可以忽略 Windows 缩放。这有效地在代码中设置它并将其作为参数传递。
public class Main {
public static void main(String[] args) {
System.setProperty("glass.win.uiScale", "100%"); // instead of allowhidpi
MainFXML.run(args);
}
}
请注意,将 prism.allowhidpi
设置为 false 将使我测试的缩放覆盖无效。