Преобразование текста в нескольких кодировках - C#

Узнай цену своей работы

Формулировка задачи:

Доброго времени суток! Скажите, возможно ли открытие текста в нескольких кодировках?
Листинг программы
  1. using (FileStream fstream = File.OpenRead(@"C:\SomeDir\noname\note.txt"))
  2. {
  3. byte[] array = new byte[fstream.Length];
  4. fstream.Read(array, 0, array.Length);
  5. string textFromFile = System.Text.Encoding.Default.GetString(array);
  6. Console.WriteLine("Текст из файла: {0}", textFromFile);
  7. }
  8. Console.ReadLine();

Решение задачи: «Преобразование текста в нескольких кодировках»

textual
Листинг программы
  1. using System;
  2. using System.Runtime.InteropServices;
  3.  
  4. public class Example
  5. {
  6.    [DllImport("kernel32.dll", SetLastError = true)]
  7.    static extern IntPtr GetStdHandle(int nStdHandle);
  8.  
  9.    [DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
  10.    static extern bool GetCurrentConsoleFontEx(
  11.           IntPtr consoleOutput,
  12.           bool maximumWindow,
  13.           ref CONSOLE_FONT_INFO_EX lpConsoleCurrentFontEx);
  14.  
  15.    [DllImport("kernel32.dll", SetLastError = true)]
  16.    static extern bool SetCurrentConsoleFontEx(
  17.           IntPtr consoleOutput,
  18.           bool maximumWindow,
  19.           CONSOLE_FONT_INFO_EX consoleCurrentFontEx);
  20.  
  21.    private const int STD_OUTPUT_HANDLE = -11;
  22.    private const int TMPF_TRUETYPE = 4;
  23.    private const int LF_FACESIZE = 32;
  24.    private static IntPtr INVALID_HANDLE_VALUE = new IntPtr(-1);
  25.  
  26.    public static unsafe void Main()
  27.    {
  28.       string fontName = "Lucida Console";
  29.       IntPtr hnd = GetStdHandle(STD_OUTPUT_HANDLE);
  30.       if (hnd != INVALID_HANDLE_VALUE) {
  31.          CONSOLE_FONT_INFO_EX info = new CONSOLE_FONT_INFO_EX();
  32.          info.cbSize = (uint) Marshal.SizeOf(info);
  33.          bool tt = false;
  34.          // First determine whether there's already a TrueType font.
  35.          if (GetCurrentConsoleFontEx(hnd, false, ref info)) {
  36.             tt = (info.FontFamily & TMPF_TRUETYPE) == TMPF_TRUETYPE;
  37.             if (tt) {
  38.                Console.WriteLine("The console already is using a TrueType font.");
  39.                return;
  40.             }
  41.             // Set console font to Lucida Console.
  42.             CONSOLE_FONT_INFO_EX newInfo = new CONSOLE_FONT_INFO_EX();
  43.             newInfo.cbSize = (uint) Marshal.SizeOf(newInfo);          
  44.             newInfo.FontFamily = TMPF_TRUETYPE;
  45.             IntPtr ptr = new IntPtr(newInfo.FaceName);
  46.             Marshal.Copy(fontName.ToCharArray(), 0, ptr, fontName.Length);
  47.             // Get some settings from current font.
  48.             newInfo.dwFontSize = new COORD(info.dwFontSize.X, info.dwFontSize.Y);
  49.             newInfo.FontWeight = info.FontWeight;
  50.             SetCurrentConsoleFontEx(hnd, false, newInfo);
  51.          }
  52.       }    
  53.     }
  54.  
  55.    [StructLayout(LayoutKind.Sequential)]
  56.    internal struct COORD
  57.    {
  58.       internal short X;
  59.       internal short Y;
  60.  
  61.       internal COORD(short x, short y)
  62.       {
  63.          X = x;
  64.          Y = y;
  65.       }
  66.    }
  67.  
  68.    [StructLayout(LayoutKind.Sequential)]
  69.    internal unsafe struct CONSOLE_FONT_INFO_EX
  70.    {
  71.       internal uint cbSize;
  72.       internal uint nFont;
  73.       internal COORD dwFontSize;
  74.       internal int FontFamily;
  75.       internal int FontWeight;
  76.       internal fixed char FaceName[LF_FACESIZE];
  77.    }
  78. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

13   голосов , оценка 3.615 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы