我正在尝试在 Java Web Start 中部署一个非常简单的应用程序。我对此完全陌生。
我的应用程序包含一个 Java 文件。通过 java (java CustomDemo) 运行应用程序时,它会显示一个包含一个按钮的对话框。当用户单击该按钮时,将读取一个属性文件,并且 Hello World 将作为标签显示在对话框中。
- 注意:在一个文件夹中,我有 java 类以及 .properties 文件。
我想在 Web Start 中部署该应用程序。
我遵循的步骤。
- 我制作了我的应用程序的一个 jar(jar -cvf SampleDemo.jar CustomDialog.class)。
- 我已经编写了 jnlp 文件。
- 我创建了一个 index.html 页面
- 将整个内容保存在 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 中。即使我也尝试过这种方式。