如何在JavaFX中设置应用程序安装程序图标?

时间:2017-12-10 21:15:42

标签: java windows javafx installer javafx-gradle-plugin

我正在使用JavaFX-Gradle-plugin来构建可分发的二进制文件和JavaFX应用程序的安装程序。当我的应用程序运行时,我可以这样设置图标:

stage.getIcons().add(new Image(this.getClass().getResourceAsStream("/isotype.png")));

正确设置正在运行的应用程序的图标:

enter image description here

以及任务栏:

enter image description here

但是如何设置开始菜单的图标:

enter image description here

以及其他可能的地方:

enter image description here

4 个答案:

答案 0 :(得分:5)

有一个打开请求记录此here

它说:

  

自定义图标

     

要自定义本机捆绑包中使用的图标,您必须提供相应捆绑包的图标。   图标必须遵循文件名约定才能被选中。

     
    

提示:将verbose设置为true,以记录从部署目录中提取的文件。

  

特别适用于Microsoft Windows:

  

     

图标位置:src/main/deploy/windows

     

对于Windows,您可以提供两个不同的图标。

     
      
  • 应用程序图标
  •   
  • 设置图标 - 安装程序的图标
  •   
     

| Type | Filename | | :---------------- |:------------------------- | | .exe icon | \<appName>.ico | | setup exe icon | \<appName>-setup-icon.bmp |

尽管它在那里说了什么,正确的路径是src/main/deploy/packages/windows,如adjusted-launcher-icon example所示。

答案 1 :(得分:2)

您的图片路径("/isotype.png")可能不正确。从下面的选项中选择一种方法来提供正确的路径。如果存储了图标图像:

  • 在文件夹(例如图片)中,然后使用此路径"/images/isotype.png",如:

    stage.getIcons().add(
          new Image(this.getClass().getResourceAsStream("/images/isotype.png")));
    
  • 在包目录中,然后使用此路径"isotype.png",如:

    stage.getIcons().add(new Image(this.getClass().getResourceAsStream("isotype.png")));
    
  • 在文件夹结构中,然后使用此路径"../images/isotype.png",如:

    stage.getIcons().add(
          new Image(this.getClass().getResourceAsStream("../images/isotype.png"")));
    

更新

你必须看看A guide to the Gradle JavaFX Plugin,它描述了Javafx软件包是否具有跨平台风格的开始菜单集成,停靠和托盘图标,菜单栏集成和单击图标。为此,如果您打算分发应用程序,则可以签署您的文件在输出文件夹中,使用here in 7.3.5说明signtool.exe

现在您必须在build.gradle内部使用某些(图标)配置选项作为:

javafx {
    appID 'SampleApp'
    appName 'Sample Application'
    mainClass 'com.example.sample.Main'

    jvmArgs = ['-XX:+AggressiveOpts', '-XX:CompileThreshold=1']
    systemProperties = [ 'prism.disableRegionCaching':'true' ]
    arguments = ['-l', '--fast']

    embedLauncher = false

    // deploy/info attributes
    category = 'Demos'
    copyright = 'Copyright (c) 2013 Acme'
    description = 'This is a sample configuration, it is not real.'
    licenseType = 'Apache 2.0'
    vendor = 'Acme'
    installSystemWide = true
    menu = true
    shortcut = true

    // app icons
    icons {
        shortcut = ['shortcut-16.png', 'shortcut-32.png', 'shortcut-128.png', 'shortcut-256.png', 'shortcut-16@2x.png', 'shortcut-32@2x.png', 'shortcut-128@2x.png']
        volume = 'javafx-icon.png'
        setup = 'javafx-icon.png'
    }

    // applet and webstart stuff
    debugKey {
        alias = 'debugKey'
        //keyPass = 'password' // provide via command line
        keyStore = file('~/keys/debug.jks')
        //storePass = 'password'  // provide via command line
    }
    releaseKey {
        alias = 'production'
        //keyPass = 'password' // provide via command line
        keyStore = file('/Volumes/ProdThumbDrive/production.jks')
        //storePass = 'password'  // provide via command line
    }
    signingMode 'release'

    width = 800
    height = 600
    embedJNLP = false
    codebase = 'http://example.com/bogus/JNLP/Codebase'

    // arbitrary jnlp icons
    icon {
        href = 'src/main/resources/javafx-icon.png'
        kind = 'splash'
        width = 128
        height = 128
    }
    icon {
        href = 'shortcut-32@2x.png'
        kind = 'selected'
        width = 16
        height = 16
        scale = 1
    }
}

答案 2 :(得分:1)

此处记录了如何执行此操作的一般步骤: https://github.com/BilledTrain380/javafx-gradle-plugin/blob/648acafa7198e9bd7cf1a2ef933456ce5e0b65f9/README.md#customize-icons 但最近我遇到了最新版本的打包器(实际上是蚂蚁任务)的问题。似乎有些东西被破坏了,因为它适用于旧的(Java 8)版本的打包器,但不适用于最近的版本。然而,我能够通过明确指定

来使其工作
<fx:bundleArgument arg="icon" value="package/macosx/myapp.icns"/>

在fx:deploy部分中。我不知道在Gradle中这是怎么做的,因为我使用了蚂蚁,但你应该能够找到它。在旧版本的打包机中,这不是必需的。

答案 3 :(得分:0)

如果您使用蚂蚁构建或工件构建javafx应用程序,请按照以下说明进行操作

https://flaironix.com/2019/09/18/adding-custom-icon-for-javafx-application-exe-file-in-intelije/

在工件中使用此选项标签

<option name="icons">
    <JavaFxApplicationIcons>
    <option name="linuxIcon" value="$PROJECT_DIR$/src/Controller/logo.png" />
    <option name="windowsIcon" value="$PROJECT_DIR$/src/Controller/logo.ico"/>
   </JavaFxApplicationIcons>
</option>