0

我必须在 swt 中的向导对话框中设置图像,类路径加载此图像但图像未正确显示。在我的设计中,在这个合成中创建一个合成,创建一个 lebel。在这个 lebel 之后我想添加一个图像。之后我将创建一个可运行的 jar。这个 jar 将使用正确的图像执行。在我的实现部分中,我在 src 文件夹中创建了一个资源(src 文件夹),并在此资源文件夹中保存了我需要的图像。请找到以下代码,

   File file = new File("resources/Automatics_Logo.png");
   Image image = new Image(Display.getDefault(), file.getPath());

   Label lblNewLabel_4 = new Label(composite, SWT.NONE);
  lblNewLabel_4.setImage(SWTResourceManager.getImage(CheckSystemConfigurationAndInstallation.class,image.toString()));

在此处输入图像描述

4

1 回答 1

0
Image imgSWT=null;  // Image class is the SWT Image class
        ImageDescriptor imgDesc=null;
        java.net.URL imgURL = IntroductionPage.class.getResource("/Automatics_Logo.png");

        if (imgURL != null) {
            imgDesc = ImageDescriptor.createFromURL(imgURL);
            imgSWT = imgDesc.createImage();
于 2017-06-28T16:07:00.833 回答