gpt4 book ai didi

java - 签署 JAR 以允许其类访问互联网

转载 作者:行者123 更新时间:2023-12-01 13:10:32 36 4
gpt4 key购买 nike

我有一个需要互联网访问的 Java 应用程序,因为它通过 WebView 嵌入了 Web 浏览器。 JavaFX 组件。

如果应用程序未打包在 Jar 中,则执行不会出现问题。但是,当打包在 Jar 中时,它无法再访问互联网(例如,它无法加载所需的远程 Javascript 文件,例如 JQuery)。

我尝试修复它,用以下命令签署 jar:

jarsigner myjar myalias

命令成功,但出现以下警告:

Warning: The signer certificate will expire within six months. No -tsa or -tsacert is provided and this jar is not timestamped. Without a timestamp, users may not be able to validate this jar after the signer certificate's expiration date (2014-07-08) or after any future revocation date.

但是,应用程序仍然无法访问互联网(嵌入式浏览器仍然无法加载远程脚本文件)。我应该用其他方式签名吗?也许包括来自公认的证书颁发机构的证书?

我还在我的 ~/.java.policy 中配置了权限文件如下:

keystore "file:<userpath>/.keystore", "jks";

grant signedBy "myalias" {
permission java.security.AllPermission;
};

我正在 OSX 10.9.2 和 Java 1.8.0-b132 中尝试

更新

事实证明,无论应用程序是否嵌入 Jar 中,嵌入式浏览器的执行方式都会有所不同,这超出了安全权限。

我不知道这是什么原因,但如果你不知道的话,这可能会导致你得出各种错误的结论。可能是一个讨厌的错误。

例如,我观察到的一件事是,当没有打包在 Jar 中时,像这样开始嵌入网页效果很好:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
...

但是当打包在 Jar 中时,这给我带来了问题(可能强制执行了 xhtml1-strict),所以我不得不用简单的 <html> 替换它。标签。

这不是唯一的不同行为,而是给我带来问题的主要原因。

最佳答案

更多信息会很好,您是否尝试使用 native 打包进行部署,您是否使用 webstart 等。

无论如何,根据您的问题,我建议您考虑一下让 Netbeans 帮助您进行签名等。

我更喜欢创建基于 FXML 的应用程序,这样代码和界面保持分离。在本例中,我只是直接输入一些 HTML。

我已经使用 WebView 部署了许多 JavaFX 应用程序,没有出现任何问题。如果您在本地部署,我不会担心证书此时会过期,除非您使用的是 webstart。

这里有一些运行良好的示例代码,它使用 WebView 并访问互联网来获取 jQuery。

主类:

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

/**
*
* @author Sam
*/
public class WebViewTestJDK8 extends Application {

@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));

Scene scene = new Scene(root);

stage.setScene(scene);
stage.show();
}

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}

}

Controller :

import java.net.URL;
import java.util.ResourceBundle;
import javafx.application.Platform;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Label;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;


public class FXMLDocumentController implements Initializable {

@FXML
private WebView webView;

@Override
public void initialize(URL url, ResourceBundle rb) {

Platform.runLater(new Runnable() {
@Override
public void run() {
String html = "<html>\n"
+ "<head>\n"
+ "<title>jQuery Hello World</title>\n"
+ " \n"
+ "<script type=\"text/javascript\" src=\"http://code.jquery.com/jquery-1.2.6.min.js\"></script>\n"
+ " \n"
+ "</head>\n"
+ " \n"
+ "<body>\n"
+ " \n"
+ "<script type=\"text/javascript\">\n"
+ " \n"
+ "$(document).ready(function(){\n"
+ " $(\"#msgid\").html(\"Hello World by JQuery\");\n"
+ "});\n"
+ " \n"
+ "</script>\n"
+ " \n"
+ "Hello World by HTML\n"
+ " \n"
+ "<div id=\"msgid\">\n"
+ "</div>\n"
+ " \n"
+ "</body>\n"
+ "</html>";

webView.getEngine().loadContent(html);
}
});

}

}

FXML:

<?xml version="1.0" encoding="UTF-8"?>

<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.web.*?>

<AnchorPane id="AnchorPane" fx:id="pane" prefHeight="367.0" prefWidth="446.0" xmlns:fx="http://javafx.com/fxml" fx:controller="webviewtest.jdk8.FXMLDocumentController">
<children>
<WebView fx:id="webView" prefHeight="367.0" prefWidth="446.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
</children>
</AnchorPane>

希望对你有帮助!

关于java - 签署 JAR 以允许其类访问互联网,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22901862/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com