Chrome Java + Native消息传递工作不好

nwlls2ji  于 2023-01-03  发布在  Go
关注(0)|答案(3)|浏览(324)

我有一个Java应用程序和谷歌浏览器的问题,由于NPAPI的弃用。阅读一些文章和博客,我已经找到了一个"解决方案":* 本机消息传递 *。
但是所有的例子都是用C ++/C #/Python做的,对于Java来说什么都没有。我想如果有人能帮我做这件事。
下面是我的模式(see image):Google Chrome扩展-〉本地消息-〉Java应用程序(jar)

    • 问题:**扩展调用Java应用程序,Java应用程序运行但未接收任何内容,当它返回时,扩展未收到任何内容。

下面是我的代码:

    • Chrome扩展**
    • 背景. js**:
chrome.runtime.onConnect.addListener(function(port) {

port.onMessage.addListener(
  function(message) {	
	chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
		console.log( 'background.js received msg [' + message.text + ']'); 
		console.log( 'port.postMessage({content: "generated by background.js"}); to [' + tabs[0].id + "/" + tabs[0].url + ']');
		chrome.runtime.sendNativeMessage('cnb.digitalsigning',message,function(response) {
    console.log("Received from native " + response);
  });
	
		chrome.tabs.sendMessage(tabs[0].id, {content: "generated by background.js"});
	});
	return true;
  });  
  
port.onDisconnect.addListener(function() {
  console.log("Background.js Port disconnected");
});

});

  //native messaging
    • 内容_脚本. js**
window.addEventListener("message", function(event) {
  // We only accept messages from ourselves
  
  if (event.source != window)
    return;

  if (event.data.type && (event.data.type == "DIGITAL_SIGNER_MSG")) {
    console.log("Content script received  from webpage: " + event.data.text);
	console.log('calling port.postMessage(event.data.text); ...' + event.data.text );
	port = chrome.runtime.connect();	
	port.postMessage({text: event.data.text});
  }
}, false);


chrome.runtime.onMessage.addListener(
  function(response, sender, sendResponse) {
	alert("receiving response from extension" + response.content );  
});
    • 清单. json**
{
  "name": "Test",
  "description": "Test",
  "version": "0.1",
  "manifest_version": 2,
  "background": {
		"persistent" : true,
      "scripts": ["background.js"]	  
  },
  "content_scripts": [
    {
      "matches": ["*://*/*"],
      "js": ["content_script.js"]
    }
  ],
  "permissions": [
           "nativeMessaging"
        ]
}
    • 超文本标记语言**
<html>
<script>
function myFunc(){

	console.log('call func');
	window.postMessage({ type: "DIGITAL_SIGNER_MSG", text: "do it, baby!" }, "*");
	console.log('func called');
}


</script>
<body>
<div>Page</div>

<form>
<button  id="caller" onclick="myFunc()">Call Extension</button>
<div id="reponseDiv" style="border: 3px; border-color: blue;">NO RESPONSE LOADED</div>
</form>
</body>

</html>
    • 主持人**
    • 安装注册电池**
REG ADD "HKCU\Software\Google\Chrome\NativeMessagingHosts\digitalsigning" /ve /t REG_SZ /d "%~dp0digitalsigning.json" /f

pause
    • 启动. bat 侠**
C:\location\to\Java\jre\bin\java.exe -cp C:\component\target\java.jar com.org.App
pause
    • 数字签名. json**
{
  "name": "digitalsigning",
  "description": "digitalsigning",
  "path": "c:\\place\\launch.bat",
  "type": "stdio",
  "allowed_origins": [
    "chrome-extension://<GOOGLE EXTENSION ID GENERATED>/"
  ]
}

应用程序包含一个Main,该Main使用System.in.read捕获消息并使用System.out.write响应扩展。
我该如何进行这种交流?这是启动java应用程序的正确方式吗?

8mmmxcuj

8mmmxcuj1#

https://stackoverflow.com/a/25617143/865284上,你可以看到如何以正确的方式发送数据。System.in应该是正确的方式,但到目前为止,我还没有找到在java中接收数据的方法。

lnvxswe2

lnvxswe22#

还请注意这篇文章,其中发送和返回的消息只使用几行简单的代码就可以成功发送:https://stackoverflow.com/a/33113627,应该明确返回消息的基本要求。

qyswt5oh

qyswt5oh3#

您可以看看https://github.com/Cosium/web-native-messaging-host,它是一个Java库,允许将任何JVM应用程序转换为Web原生消息主机。

相关问题