• <small id='e5kyn'></small><noframes id='e5kyn'>

      1. <legend id='e5kyn'><style id='e5kyn'><dir id='e5kyn'><q id='e5kyn'></q></dir></style></legend>

        <tfoot id='e5kyn'></tfoot>
          <bdo id='e5kyn'></bdo><ul id='e5kyn'></ul>
      2. <i id='e5kyn'><tr id='e5kyn'><dt id='e5kyn'><q id='e5kyn'><span id='e5kyn'><b id='e5kyn'><form id='e5kyn'><ins id='e5kyn'></ins><ul id='e5kyn'></ul><sub id='e5kyn'></sub></form><legend id='e5kyn'></legend><bdo id='e5kyn'><pre id='e5kyn'><center id='e5kyn'></center></pre></bdo></b><th id='e5kyn'></th></span></q></dt></tr></i><div id='e5kyn'><tfoot id='e5kyn'></tfoot><dl id='e5kyn'><fieldset id='e5kyn'></fieldset></dl></div>

        将 SQL Server varBinary 数据转换为字符串 C#

        时间:2023-06-03

        1. <small id='WFqL2'></small><noframes id='WFqL2'>

          <tfoot id='WFqL2'></tfoot>

            <tbody id='WFqL2'></tbody>
        2. <i id='WFqL2'><tr id='WFqL2'><dt id='WFqL2'><q id='WFqL2'><span id='WFqL2'><b id='WFqL2'><form id='WFqL2'><ins id='WFqL2'></ins><ul id='WFqL2'></ul><sub id='WFqL2'></sub></form><legend id='WFqL2'></legend><bdo id='WFqL2'><pre id='WFqL2'><center id='WFqL2'></center></pre></bdo></b><th id='WFqL2'></th></span></q></dt></tr></i><div id='WFqL2'><tfoot id='WFqL2'></tfoot><dl id='WFqL2'><fieldset id='WFqL2'></fieldset></dl></div>

            <bdo id='WFqL2'></bdo><ul id='WFqL2'></ul>
            <legend id='WFqL2'><style id='WFqL2'><dir id='WFqL2'><q id='WFqL2'></q></dir></style></legend>
                • 本文介绍了将 SQL Server varBinary 数据转换为字符串 C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我需要帮助弄清楚如何将来自 SQL Server 表列(设置为 varBinary(max))的数据转换为字符串以便显示它在一个标签中.

                  I need help figuring out how to convert data that comes in from a SQL Server table column that is set as varBinary(max) into a string in order to display it in a label.

                  这是在 C# 中,我正在使用 DataReader.

                  This is in C# and I'm using a DataReader.

                  我可以使用以下方法提取数据:

                  I can pull the data in using:

                  var BinaryString = reader[1];
                  

                  我知道此列包含以前转换为二进制的文本.

                  i know that this column holds text that was previously convert to binary.

                  推荐答案

                  这真的取决于你最初从字符串转换为二进制时使用的编码:

                  It really depends on which encoding was used when you originally converted from string to binary:

                   byte[] binaryString = (byte[])reader[1];
                  
                   // if the original encoding was ASCII
                   string x = Encoding.ASCII.GetString(binaryString);
                  
                   // if the original encoding was UTF-8
                   string y = Encoding.UTF8.GetString(binaryString);
                  
                   // if the original encoding was UTF-16
                   string z = Encoding.Unicode.GetString(binaryString);
                  
                   // etc
                  

                  这篇关于将 SQL Server varBinary 数据转换为字符串 C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何在 C# 中将字符串转换为 ascii 到二进制? 下一篇:c#中布尔值的二进制表示是什么

                  相关文章

                  最新文章

                  <tfoot id='Ri351'></tfoot>

                      <bdo id='Ri351'></bdo><ul id='Ri351'></ul>

                    <small id='Ri351'></small><noframes id='Ri351'>

                      <i id='Ri351'><tr id='Ri351'><dt id='Ri351'><q id='Ri351'><span id='Ri351'><b id='Ri351'><form id='Ri351'><ins id='Ri351'></ins><ul id='Ri351'></ul><sub id='Ri351'></sub></form><legend id='Ri351'></legend><bdo id='Ri351'><pre id='Ri351'><center id='Ri351'></center></pre></bdo></b><th id='Ri351'></th></span></q></dt></tr></i><div id='Ri351'><tfoot id='Ri351'></tfoot><dl id='Ri351'><fieldset id='Ri351'></fieldset></dl></div>
                      <legend id='Ri351'><style id='Ri351'><dir id='Ri351'><q id='Ri351'></q></dir></style></legend>