我有一台称重机,它使用串行端口连接到计算机。这是一台非常古老的机器,我们正试图减轻它的重量并保存在数据库中。
机器返回的重量有一些无效字符,如?
,重量显示为??2?0
,应该在哪里02220
。
我知道这与网络搜索结果中的编码有关。但我无法弄清楚我到底错过了什么。
这是我的代码:
private void port_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
// This method will be called when there is data waiting in the port buffer
// Read all the data waiting in the buffer
// string data = comport.ReadExisting();
// Display the text to the user in the Rich Text Box
Log(LogMsgType1.Incoming, s);
}
public void OpenThisPort()
{
bool error = false;
// If the port is open, close it
if (comport.IsOpen)
{
comport.Close();
}
else
{
comport.BaudRate = int.Parse("1200");
comport.DataBits = int.Parse("8");
comport.StopBits = StopBits.One;
comport.Parity = Parity.None;
comport.PortName = "COM1";
delStart = 0;
delLength = 9;
comport.RtsEnable = true;
comport.DtrEnable = true;
comport.Encoding = System.Text.Encoding.GetEncoding(28591);
}
如何准确确定将应用哪种编码?知道我在这里缺少什么吗?