zoukankan      html  css  js  c++  java
  • 生成简体汉字C#

    private string LocationCode(int ACode)
    {
       
    return Encoding.Default.GetString(
           
    new byte[] { (byte)(ACode / 100 + 160), (byte)(ACode % 100 + 160) });
    }

    private void button1_Click(object sender, EventArgs e)
    {
       
    for (int i = 0; i < 1000; i++)
        {
           
    string l = LocationCode(1601 + i);
           
    if (l != "?") Console.Write(l);
        }
    }

    办法2,

        private   void   button10_Click(object   sender,   EventArgs   e)
                    {
                            string   l="";
                            string   strtxt   =   "";
                                    for   (int   i   =   0;   i   <   1000;   i++)
                                    {
                                              l   =   LocationCode(1601   +   i);
                                              if   (l   !=   "?")   strtxt   =   strtxt   +   l;
                                    }
                                    label5.Text   =   strtxt;
                    }
                    private   string   LocationCode(int   ACode)
                    {
                            return   Encoding.Default.GetString(
                                    new   byte[]   {   (byte)(ACode   /   100   +   160),   (byte)(ACode   %   100   +   160)   });
                    }
     
  • 相关阅读:
    中文分词技术
    布隆过滤器(Bloom Filter)详解
    真正理解Mysql的四种隔离级别
    从内核文件系统看文件读写过程
    如何评价腾讯开源的消息中间件TubeMQ?
    零拷贝(Zero-copy)及其应用详解
    深入了解RabbitMQ
    (四)下载利器aria2
    (三)轻量级文件服务器filebrowser
    log4j 2整理
  • 原文地址:https://www.cnblogs.com/whitetiger/p/1081484.html
Copyright © 2011-2022 走看看