1

JavaFX アプリを Web サイトにアップロードすると、次のエラーが発生しますが、ローカルでは取得できません。

「コードベース」タグのようなものが欠けていると思いますが、どこに行くのかわかりません。誰か助けてください。

Java コンソール エラー:

exception: JNLP file error: iShout_Foxpro_browser.jnlp. 
Please make sure the file exists and check if "codebase" and "href" in the JNLP
   file are correct..
java.io.FileNotFoundException: JNLP file error: iShout_Foxpro_browser.jnlp. 
Please make sure the file exists and check if "codebase" and "href" in the JNLP 
  file are correct.
at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Exception: java.io.FileNotFoundException: JNLP file error:     
  iShout_Foxpro_browser.jnlp.     
Please make sure the file exists and check if "codebase" and "href" in the 
  JNLP file are correct.

HTML ファイル ソース...

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>app_one</title>
</head>
<body>
<script src="http://dl.javafx.com/1.3/dtfx.js"></script>
<script>
javafx(
    {
          archive: "app_one.jar",
          draggable: true,
          width: 480,
          height: 320,
          code: "app.Main",
          name: "app_one"
    }
);

4

1 に答える 1

1

Matthew Hegarty さん、おっしゃる通りです。「アーカイブ」プロパティは、サーバーにアップロードされたときに正しい場所を指していませんでした。

答えを記入していただければ、正解としてチェックします。

ありがとうジェフ・ポーター

于 2010-05-24T07:26:02.280 に答える