本文介绍了在Windows和Linux上检测OS和Java的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个基于Maven的JavaFX项目.我想在Windows和Linux上构建Maven项目.为了在部署分发包时自动执行该过程,我想自动检测操作系统.
I have a JavaFX project based on Maven. I want to build the Maven project on Windows and on Linux. In order to automate the process when I deploy the bundle I want to automatically detect the operating system.
在Windows中,我具有以下配置:
In windows I have this configuration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArguments>
<bootclasspath>${sun.boot.class.path}${path.separator}${java.home}/lib/jfxrt.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
但是在Linux上,我有以下配置:
But on Linux I have this configuration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArguments>
<bootclasspath>/opt/java/lib/jfxrt.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
我能以某种方式基于部署捆绑软件的操作系统来设置Java使用率吗?
Can I somehow set the Java usage based on the operating system on which the bundle is deployed?
推荐答案
您可以使用配置文件用于此类目的:
You can use profiles for such purposes like this:
<profiles>
<profile>
<activation>
<os>
<name>Windows XP</name>
<family>Windows</family>
<arch>x86</arch>
<version>5.1.2600</version>
</os>
</activation>
...
</profile>
</profiles>
这篇关于在Windows和Linux上检测OS和Java的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!