我今天和昨天花了几个小时,研究如何使用 C# 主机获取 Chrome 原生消息传递。用 Java Host 再试一次,同样的错误。在这些问题的帮助下,我做了几次尝试,但没有成功:
用 C# 编写的从 chrome 扩展到本机主机的本机消息传递
将“大量”数据从 Chrome 扩展程序传递到主机非常慢(用 C# 编写)
尝试使用 VStudio 2017、2019,使用 c# 4.7、c# 客户端配置文件 4.0;使用 Java,尝试使用 JRE 8、JRE 11,并出现相同的错误。使用Python,测试成功,为什么?(二进制模式有效?)项目经理接受的唯一解决方案是 C#...
static void Main(string[] args)
{
bool platform64 = true;
if (IntPtr.Size == 8)
platform64 = true;
else
platform64 = false;
logger.InfoFormat("Platform x64?: {0}", platform64);
logger.InfoFormat("Arguments:");
foreach (String arg in args)
{
logger.InfoFormat(" arg: {0}", arg);
}
JObject data;
while ((data = Read()) != null)
{
var processed = ProcessMessage(data);
SendMessage(processed);
if (processed["text"].Value<string>().Equals("exit"))
{
return;
}
}
}
public static JObject Read()
{
logger.Debug("Init Read()...");
var stdin = Console.OpenStandardInput();
var lengthBytes = new byte[4];
stdin.Read(lengthBytes, 0, 4);
var length = BitConverter.ToInt32(lengthBytes, 0);
logger.DebugFormat("Length of bytes...{0}", length);
var buffer = new char[length];
var input = "";
for (int i = 0; i < length; i++)
input += (char)stdin.ReadByte();
return JsonConvert.DeserializeObject<JObject>(input);
}
public static void SendMessage(JObject data)
{
var bytes = System.Text.Encoding.UTF8.GetBytes(data.ToString(Formatting.None));
var stdout = Console.OpenStandardOutput();
stdout.WriteByte((byte)((bytes.Length >> 0) & 0xFF));
stdout.WriteByte((byte)((bytes.Length >> 8) & 0xFF));
stdout.WriteByte((byte)((bytes.Length >> 16) & 0xFF));
stdout.WriteByte((byte)((bytes.Length >> 24) & 0xFF));
stdout.Write(bytes, 0, bytes.Length);
stdout.Flush();
}
从 Google 的文档中,关于二进制格式和来自 StackOverflow 的信息,有谁知道什么可以使它起作用,并且 Google 与主机通信?
发送本机消息示例(直接):
chrome.runtime.sendNativeMessage('com.otisw.signer',
{ text: "list" },
function (response) {
console.log("Received " + response);
});