如何在 c# 中以数字方式添加字符



所以我正在构建一个程序,它将字符串转换为二进制数(即"A"= 01000001)。然后,如果用户愿意,可以将该二进制数转换回 ascii 字符。这里的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading.Tasks;
namespace NDR_011
{
class Program
{
    public static Byte[] BinStr(String binary)
    {
        var list = new List<Byte>();
        for (int i = 0; i < binary.Length; i += 8)
        {
            String t = binary.Substring(i, 8);
            list.Add(Convert.ToByte(t, 2));
        }
        return list.ToArray();
    }
    public static void Print(object mess)
    {
        string tmp = mess.ToString().ToUpper();
        Console.Write(tmp);
    }
    private static List<string> buffer = new List<string>();
    private static string outfile = "C:/tmp/bytes.bin";
    static void Main(string[] args)
    {
        string tmp = "";
        Print("NDR 011n");
        while (true)
        {
            Print(""); tmp = Console.ReadKey().Key.ToString().ToUpper();
            if (Console.CursorLeft > 0) 
            {
                Console.SetCursorPosition(Console.CursorLeft - 1, Console.CursorTop);
            }
            if (tmp == ConsoleKey.F1.ToString())
            {
                break;
            } else if (tmp == ConsoleKey.F2.ToString())
            {
                comp();
                continue;
            } else if (tmp == ConsoleKey.F4.ToString())
            {
                buffer.Clear();
                continue;
            } else if (tmp == ConsoleKey.F5.ToString())
            {
                Print("N "); string a = Console.ReadLine();
                outfile = a;
                continue;
            } else if (tmp == ConsoleKey.F5.ToString())
            {
                outfile = "C:/tmp/bytes.bin";
                Print("Out file resetn");
                continue;
            } else if (tmp == ConsoleKey.F7.ToString())
            {
                //Print("N "); // string a = Console.ReadLine();
                string a = "C:/tmp/bytes.bin";
                string[] s = File.ReadAllText(a).Split(' ');
                char[] end = new char[s.Length - 1];
                for (int i=0;i<end.Length;i++)
                {
                    end[i] = (char)BinStr(s[i])[0];
                    //Print(end[i]);
                }
                //Print((char)BinStr(s[0])[0]);
                if (end[0] == 'A' && end[1] == 'D' && end[2] == 'D')
                {
                    for (int i=0+3;i<end.Length;i++)
                    {
                        int n = end[i] + end[i];
                        Print(n);
                    }
                }
                //decompile(a);
                continue;
            }
            while (tmp.Length > 1)
            {
                char a = tmp[tmp.Length - 1];
                tmp = a.ToString();
            }
            buffer.Add(tmp);
        }
    }
    static void comp()
    {
        if (buffer == null || buffer.Count <= 0)
        {
            Print("Error buffer empty");
            return;
        }
        char[] r = new char[buffer.Count];
        for (int i=0;i<buffer.Count;i++)
        {
            r[i] = Convert.ToChar(buffer[i]);
            Print(r[i]);
        }
        foreach (char ch in r)
        {
            string a = Convert.ToString((int)ch, 2);
            while (a.Length != 8)
            {
                string b = "0";
                a = b + a;
            }
            File.AppendAllText(outfile, a + " ");
        }
        Print("Compile done!n");
    }
    static void decompile(string filename)
    {
    }
    static void run()
    {
    }
}
}

(当我添加到这篇文章时,缩进被搞砸了。

问题是这样的:当我尝试添加从文件中获得的值时,我得到随机数,例如:100102,以及诸如此类的奇怪内容。我做错了什么?谢谢

以下是将

字符串转换为 1 和 0 的二进制字符串的方法:

var binstring = string.Join(" ", Encoding.ASCII.GetBytes(("Welcome, World!")).Select(byt => Convert.ToString(byt, 2).PadLeft(8, '0')));

要将其转换回字符串,我们需要使用如下方法从中解析 byte[] 数组:

public static byte[] GetBytes(string s)
        {
            byte[] result = new byte[(s.Length + 7) / 8];
            int i = 0;
            int j = 0;
            foreach (char c in s)
            {
                result[i] <<= 1;
                if (c == '1')
                    result[i] |= 1;
                j++;
                if (j == 8)
                {
                    i++;
                    j = 0;
                }
            }
            return result;
        }

然后我们得到这些字节,我们可以简单地将其转换为字符串:

Encoding.ASCII.GetString(GetBytes(binstring));

参考:
如何编码 1 和 0 的字符串以进行传输?
如何获取 ASCII (C#) 背后的二进制代码

最新更新