0

我正在尝试在 Java Web Start 中部署一个非常简单的应用程序。我对此完全陌生。

我的应用程序包含一个 Java 文件。通过 java (java CustomDemo) 运行应用程序时,它会显示一个包含一个按钮的对话框。当用户单击该按钮时,将读取一个属性文件,并且 Hello World 将作为标签显示在对话框中。

  • 注意:在一个文件夹中,我有 java 类以及 .properties 文件。

我想在 Web Start 中部署该应用程序。

我遵循的步骤。

  1. 我制作了我的应用程序的一个 jar(jar -cvf SampleDemo.jar CustomDialog.class)。
  2. 我已经编写了 jnlp 文件。
  3. 我创建了一个 index.html 页面
  4. 将整个内容保存在 tomcat/webapps 中并部署在 tomcat 中。

现在的问题是,如果我将标签显示为任何硬编码的字符串,那么应用程序就像一个魅力一样工作。但是,当我读取属性文件时,我在 Java Web Start 中运行时遇到了异常,即“文件未找到接收”

我的示例代码如下

CustomDialog.java

import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowEvent;

import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JTable;

import java.io.FileInputStream;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Properties;

public class CustomDialog extends JDialog implements ActionListener
{
    protected boolean i_boolButtonClicked = false;
    protected String LABEL                = "";

    public CustomDialog()
    {
        this.setSize(500, 300);
        JButton but = new JButton("Hello");


        //Start Anjan to read data/text from .properties file..
        Properties  i_propConfig        = new Properties();
        try
        {
            FileInputStream inStream = new FileInputStream("./Test.properties");
            i_propConfig.load( inStream  );
            inStream.close();
        }
        catch(Exception e)
        {
            e.printStackTrace();
        }

        String l_strKey = "";
        String l_strVal = "";

        Enumeration l_enum = i_propConfig.keys();
        while(l_enum.hasMoreElements())
        {
            l_strKey = (String)l_enum.nextElement();

            if(l_strKey == null || l_strKey.equals( "" ))
                continue;

            l_strVal = i_propConfig.getProperty( l_strKey );

            if(l_strVal == null || l_strVal.equals( "" ))
                continue;
        }

        System.out.println("Properties read from file--> Key: "+l_strKey +" Value: " +l_strVal);
        LABEL = l_strVal;
        //End Anjan to read data/text from .properties file..

//      but.addActionListener(new ActionListener() 
//      {
//          public void actionPerformed(ActionEvent e) 
//          {
//              //getContentPane().add(new JLabel("Hello World"));
//              getContentPane().add(new JLabel(LABEL));
//              getContentPane().validate();
//          }
//      });

        but.addActionListener(this);

        Dimension dim=Toolkit.getDefaultToolkit().getScreenSize();          
        this.setLocation((int)(dim.width- getWidth ())/2,(int)(dim.height-this.getHeight ())/2);

        but.setSize(600, 5);
        this.add(but);
        this.setLayout(new FlowLayout(FlowLayout.LEFT));
        this.setVisible(true);
    }

    public static void main(String[] args) 
    {
        CustomDialog l_objCustomDialog = new CustomDialog();
    }

    protected void processWindowEvent(WindowEvent e) 
    {
        super.processWindowEvent(e);

        if (e.getID() == WindowEvent.WINDOW_CLOSING) 
        {
            setVisible(false);
            System.exit(0);
        }
    }

    public void actionPerformed(ActionEvent e) 
    {
        System.out.println("Hello button clicked......");
        getContentPane().add(new JLabel(LABEL));
        getContentPane().validate();
    }
}

SwingDemo.jnlp

<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://172.28.1.139:8400/SwingDemo" href="SwingDemo.jnlp">
    <information>
        <title>Swing Demo</title>
        <vendor>Swing</vendor>
    </information>
    <resources>
        <!-- Application Resources -->
        <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
        <jar href="SwingDemo.jar" main="true" download="eager" />
    </resources>

    <application-desc
         name="SwingDemo Demo Application"
         main-class="SwingDemo.CustomDialog"
         width="300"
         height="300">
     </application-desc>
     <update check="background"/>

<security>
    <all-permissions/>
</security>
</jnlp>

索引.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
 <HEAD>
  <TITLE> New Document </TITLE>
  <META NAME="Generator" CONTENT="EditPlus">
  <META NAME="Author" CONTENT="">
  <META NAME="Keywords" CONTENT="">
  <META NAME="Description" CONTENT="">
 </HEAD>

 <BODY>
    <script src="http://www.java.com/js/deployJava.js"></script>
    <script>
        // using JavaScript to get location of JNLP file relative to HTML page
        var dir = location.href.substring(0,location.href.lastIndexOf('/')+1);
        var url = dir + "SwingDemo.jnlp";
        deployJava.createWebStartLaunchButton(url, '1.6.0');
    </script>
 </BODY>
</HTML>

几天来,我只是在挖掘,找不到任何解决方案。我认为在 web start 中必须有其他读取 .properties 文件的方法。任何人都可以提出任何清晰而聪明的方法来解决问题。

还有一件事我不想将属性文件固定在我的 jar 中。即使我也尝试过这种方式。

4

2 回答 2

2

FileNotFoundException在 JWS 应用程序中修复 a 的方法。就是通过URL访问资源。

getClass.getResource(String)如果属性文件位于 JWS 应用程序的运行时类路径上,则可以使用该 URL 形成。jar(在JNLP 中的元素中引用的 Jar 中)。

如果资源在服务器上是松散的,则可以相对于代码库或文档库(如果它是一个小程序)形成一个 URL。

请注意,URL 实际上意味着“只读”而不是“读/写”。在属性发生变化的情况下,我们需要采用更复杂的策略来在本地序列化它们。

于 2012-12-27T17:48:14.610 回答
0

@Andrew Thompson 我已经按照您提到的加载资源的方式进行了操作。代码片段在这里:

String url = "Test.properties";

System.out.println("Before printing paths..");
System.out.println("Path2: "+ getClass().getResource(url).getPath());

FileInputStream inputStream = new FileInputStream(new File(getClass().getResource(url).toURI()));
i_propConfig.load(inputStream);
inputStream.close();

我已经在 Eclipse 中使用层次结构对其进行了配置(在源代码下有一个名为 SwingDemo 的文件夹。在 SwingDemo 中有我的 java 文件以及资源文件)...

*源代码

  *SwingDemo

      *CustomDialog.java

      *Test.properties

当我在 Eclipse 上运行它时,一切都运行良好。但是,一旦我尝试从 cmd 行运行应用程序,就会发生空指针异常。

命令行部署层次结构如下:

文件夹:D:\Work\Java Progrms\SwingDemo

层次结构:*SwingDemo

              *CustomDialog.java            

              *Test.properties

首先,我从 cmd 行 (javac CustomDialog.java) 在 SwingDemo 文件夹中编译了这个文件。然后我回到 Java Progrms 文件夹(正如我提到的 .java 类中的包)并使用著名的“java SwingDemo.CustomDialog”运行应用程序。当我之前使用 new FileInputStream("path") 时,我曾经遵循类似的步骤。这样做后,我得到空指针异常..

我认为“getClass().getResource(url)”无法从特定目录加载文件。这就是为什么我将资源放在与我的 java 文件相同的目录中的原因。它在 Eclipse 中运行良好。但是为什么当我从命令行运行时这会出错。

于 2012-12-30T07:42:35.917 回答