進位轉換,十進位 轉換為2進位,再由二進位轉換為16進位,截取8位二進位組合字元串

来源:https://www.cnblogs.com/Nicqx/archive/2022/05/17/16281490.html
-Advertisement-
Play Games

隨手一揮,記錄一下。 以下代碼,包含了需求有: 1.十進位轉二進位。 2.二進位轉16進位 3.將十進位轉二進位的位數,不足5位的 用0 補齊5位。 4.將轉換後的二進位拼接起來,截取8位 作轉換為16進位,最後不足8位的,用 “1111” 補齊。在作轉換 。 不廢話,上代碼先。 主界面圖片: 主要 ...


隨手一揮,記錄一下。

以下代碼,包含了需求有:

  1.十進位轉二進位。

  2.二進位轉16進位

  3.將十進位轉二進位的位數,不足5位的  用0 補齊5位。

  4.將轉換後的二進位拼接起來,截取8位 作轉換為16進位,最後不足8位的,用 “1111” 補齊。在作轉換 。 

不廢話,上代碼先。 

主界面圖片:

 

主要後臺代碼:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace AisgV2ConfigurationFile
{
    /// <summary>
    /// ConvertAdd.xaml 的交互邏輯
    /// </summary>
    public partial class ConvertAdd : UserControl
    {
        List<TextBox> textBoxes = new List<TextBox>();
        public ConvertAdd()
        {
            InitializeComponent();
            var elements = container.Children;
            foreach (UIElement element in elements)
            {
                if (element is TextBox)
                {
                    var box = (TextBox)element;
                    if (box.Name.StartsWith("textBox"))
                    {
                        textBoxes.Add(box);
                    }
                }
            }
            textBoxes.Sort((x, y) =>
            {
                var result1 = Regex.Match(x.Name, @"\d+$").Value.ToInt32();
                var result2 = Regex.Match(y.Name, @"\d+$").Value.ToInt32();
                return result1 - result2;
            });
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                for (int i = 0; i < textBoxes.Count; i++)
                {
                    if (string.IsNullOrWhiteSpace(textBoxes[i].Text))
                    {
                        //textBoxes[i].Text = DefaultNumber;
                        continue;
                    }
                    var value = Convert.ToInt64($"{textBoxes[i].Text}", 10);
                    var svalue = Convert.ToString(value, 2);
                    svalue = InspectionLength(svalue, 5);
                    textBoxes[i].Text = svalue;

                }

                List<string> bit8List = new List<string>();
                StringBuilder sb = new StringBuilder();
                foreach (var box in textBoxes)
                {
                    sb.Append(box.Text + " ");
                }
                tbConsole.Text = sb.ToString();

                
                var bit8 = sb.ToString().Replace(" ", "");
                for (int i = 0; i < bit8.Length / 8; i++)
                {
                    bit8List.Add(bit8.Substring(i * 8, 8));
                }
                if (bit8List.Count != 100)
                {
                    bit8List.Add(bit8.Substring(bit8.Length-4, 4) + "1111");
                }
                MessageBox.Show(bit8List.Count.ToString());
                tbConsole1.Text = string.Join(" ", bit8List);

                byte[] by = new byte[bit8List.Count];
                for (int i = 0; i < bit8List.Count; i++)
                {
                    by[i] = Convert.ToByte(bit8List[i], 2);

                    tbConsole2.Text += by[i].ToString("X2") + " ";
                }
                GlobalVariable.fileValueByte.AddRange(by);
                
            }
            catch (Exception ex)
            {

                MessageBox.Show(ex.Message) ;
            }
            #region
            //// 文本文件追加
            //using(StreamWriter sw = File.AppendText($"{Directory.GetCurrentDirectory()}\\text.txt"))
            //{
            //    sw.WriteLine(tbConsole2.Text);
            //    sw.Flush();
            //}

            // 數據流追加
            //using (FileStream fileStream = new FileStream($"{Directory.GetCurrentDirectory()}\\text.bin", FileMode.Append, FileAccess.Write))
            //{
            //    fileStream.Write(by, 0, by.Length);
            //    fileStream.Flush();
            //}
            #endregion
        }

        /// <summary>
        /// 檢驗長度
        /// </summary>
        /// <param name="value">原始值</param>
        /// <param name="retain">保留幾位</param>
        /// <returns></returns>
        private string InspectionLength(string value, int retain)
        {
            if (value.Length < retain)
            {
                int length = retain - value.Length;
                string ZeroFilling = "";
                for (int i = 0; i < length; i++)
                {
                    ZeroFilling += "0";
                }
                value = ZeroFilling + value;
            }

            return value;
        }
        private void Button_Click_1(object sender, RoutedEventArgs e)
        {

            for (int i = 0; i < textBoxes.Count; i++)
            {
                //textBoxes[i].Text = $"{i}";
                textBoxes[i].Text = "31";//重置textbox預設值為31
                
            }
            //for (int i = 0; i < textBoxes.Count; i++)
            //{
            //    textBoxes[i].Text = "";
            //}
            tbConsole.Text = "";
            tbConsole1.Text = "";
            tbConsole2.Text = "";

        }
    }
}

 

前臺代碼

    <Grid x:Name="container">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="20"/>
            <RowDefinition Height="20"/>
            <RowDefinition Height="20"/>
            <RowDefinition Height="20"/>
            <RowDefinition Height="20"/>
            <RowDefinition Height="20"/>
            <RowDefinition Height="20"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>

        <TextBox Grid.Row="0" Text="31" Grid.Column="0" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox1"></TextBox>
        <TextBox Grid.Row="0" Text="31" Grid.Column="1" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox2"></TextBox>
        <TextBox Grid.Row="0" Text="31" Grid.Column="2" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox3"></TextBox>
        <TextBox Grid.Row="0" Text="31" Grid.Column="3" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox4"></TextBox>
        <TextBox Grid.Row="0" Text="31" Grid.Column="4" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox5"></TextBox>
        <TextBox Grid.Row="1" Text="31" Grid.Column="0" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox6"></TextBox>
        <TextBox Grid.Row="1" Text="31" Grid.Column="1" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox7"></TextBox>
        <TextBox Grid.Row="1" Text="31" Grid.Column="2" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox8"></TextBox>
        <TextBox Grid.Row="1" Text="31" Grid.Column="3" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox9"></TextBox>
        <TextBox Grid.Row="1" Text="31" Grid.Column="4" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox10"></TextBox>

        <TextBox Grid.Row="2" Text="31" Grid.Column="0" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox11"></TextBox>
        <TextBox Grid.Row="2" Text="31" Grid.Column="1" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox12"></TextBox>
        <TextBox Grid.Row="2" Text="31" Grid.Column="2" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox13"></TextBox>
        <TextBox Grid.Row="2" Text="31" Grid.Column="3" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox14"></TextBox>
        <TextBox Grid.Row="2" Text="31" Grid.Column="4" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox15"></TextBox>

        <TextBox Grid.Row="3" Text="31" Grid.Column="0" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox16"></TextBox>
        <TextBox Grid.Row="3" Text="31" Grid.Column="1" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox17"></TextBox>
        <TextBox Grid.Row="3" Text="31" Grid.Column="2" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox18"></TextBox>
        <TextBox Grid.Row="3" Text="31" Grid.Column="3" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox19"></TextBox>
        <TextBox Grid.Row="3" Text="31" Grid.Column="4" VerticalContentAlignment="Center" Padding="50 0 0 0" x:Name="textBox20"></TextBox>
        <TextBox Grid.Row="4"   Grid.ColumnSpan="5" VerticalContentAlignment="Center" TextAlignment="Center" x:Name="tbConsole"></TextBox>

        <TextBox Grid.Row="5"  Grid.ColumnSpan="5" VerticalContentAlignment="Center" TextAlignment="Center" x:Name="tbConsole1"></TextBox>

        <TextBox Grid.Row="6"  Grid.ColumnSpan="5" VerticalContentAlignment="Center" TextAlignment="Center" x:Name="tbConsole2"></TextBox>

        <Button Grid.Row="7" Grid.Column="2" Grid.ColumnSpan="3" HorizontalAlignment="Center" VerticalAlignment="Center" Padding="2" Click="Button_Click">轉換</Button>
        <Button Grid.Row="7" Grid.Column="0" Grid.ColumnSpan="3" HorizontalAlignment="Center" VerticalAlignment="Center" Padding="2" Click="Button_Click_1">重置</Button>
       
    </Grid>

用到的其他類

1     public class GlobalVariable
2     {
3         /// <summary>
4         /// 全局共用變數,存放16進位數值。ConvertAddNumber
5         /// </summary>
6         public static string FileValue = string.Empty;
7         public static List<byte> fileValueByte = new List<byte>();
8     }
View Code
1    public static class NumberExtensions
2     {
3         public static int ToInt32(this string str)
4         {
5             return Convert.ToInt32(str);
6         }
7     }
View Code

 

以上僅僅位自己練習demo,大佬勿噴。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • “==”和equals的區別 首先我們應該知道的是: “==”是運算符,如果是基本數據類型,則比較存儲的值;如果是引用數據類型,則比較所指向對象的地址值。 equals是Object的方法,比較的是所指向的對象的地址值,一般情況下,重寫之後比較的是對象的值。 一、對象類型不同 1、equals(): ...
  • 把destoon數據生成json,一般用於百度小程式、QQ小程式和微信小程式或者原生APP,由於系統是GB2312編碼,所以服務端編寫的時候我們進行了一些編碼轉換的處理,保證服務端訪問的編碼是UTF-8就可以。不多了,下麵乾貨來了。如果你是程式或此段代碼對你有幫助,希望收藏!! 代碼來了,在根目錄新 ...
  • 環境介紹: python 3.8 解釋器 pycharm 2021專業版 >>> 激活碼 編輯器 谷歌瀏覽器 谷歌驅動 selenium >>> 驅動 >>> 瀏覽器 模塊使用: 採集一個視頻 requests >>> pip install requests re 採集多個視頻 selenium ...
  • 1引言:這裡主要做三件事 1.1resources文件夾下創建spring-mvc.xml並配置:開啟註解驅動(mvc:annotation-driven),靜態資源過濾(mvc:default-servlet-handler),視圖解析器(InternalResourceViewResolver) ...
  • 在 JVM 進行垃圾回收之前,我們需要先判斷一個對象是否存活,判斷對象是否存活採用了兩種方法: 引用計數法 給對象中添加一個引用計數器,每引用這個對象一次,計數器 +1,當引用失效時,計數器 -1。當引用計數器為 0 時,則表示該對象可被回收。 Java 不適用原因:無法解決對象互相迴圈引用的問題 ...
  • 大家好,這篇文章分享了C程式設計(譚浩強)第五版第四章課後題答案,所有程式已經測試能夠正常運行,如果小伙伴發現有錯誤的的地方,歡迎留言告訴我,我會及時改正!感謝大家的觀看!!! ...
  • 大家好,這篇文章分享了C程式設計(譚浩強)第五版第三章課後題答案,所有程式已經測試能夠正常運行,如果小伙伴發現有錯誤的的地方,歡迎留言告訴我,我會及時改正!感謝大家的觀看!!! ...
  • NLog 是我們在 .NET 領域使用非常廣泛的日誌組件。它預設使用 xml 來維護它的配置。最近有幾個同學問我當使用 AgileConfig 的時候如何配置 NLog 。因為 AgileConfig 不支持集成 xml 格式的配置。其實 NLog 是支持從 appsettings.json / I ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...