程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#解決在控制台中輸入Ctrl+Z的問題

C#解決在控制台中輸入Ctrl+Z的問題

編輯:關於C語言

本人在前幾天做了一道題如下(在116行中用(int)cki.KeyChar==26解決了C#中在控制台捕捉Ctrl+Z):

解決的方法也是請教了老師,經老師調試過才得出的解決方法.(因在ConsoleKey的枚舉中無Ctrl此鍵)

總結的心得是,單步調試方法確實是有效解決問題的路徑.

1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace 用CSharp實現DOS命令Copy_con
6 {
7  //24、編寫一個程序,模擬DOS系統中的COPY CON命令功能。
8  /**//*copy是復制命令,不多解釋。
9 con 是dos 設備文件的簡稱。 在DOS中把很多外部設備作為文件,稱為設備文件。
10 DOS中這樣規定的:con 控制台(鍵盤/顯示器) aux (或com1)第一個串口 lpt1 第一個並行打印機接口,
11 nul 不存在的設備
12  所以,舉例說明:
13 copy con abc.txt
14 這條命令的意思就是從鍵盤中把輸入的文字復制到文件abc.txt中去,所以輸入命令後,在輸入字符,結束時按下
15 ctrl+z.你輸入的文字就會保存到abc.txt這個文件裡了。
16 而如果你輸入的是
17 copy abc.txt con
18 計算機則會把abc.txt中的文字復制到屏幕上,也就是顯示出來
19   */
20  class DOSCopyCon
21  {
22    private string inputCommandtext="";
23
24    private string sourceFilename="";
25
26    private string targetFilename="";
27    //有參構造函數實現,實例化對象的同時賦值命令字符串
28    public DOSCopyCon(string inputCommandText)
29    {
30      this.inputCommandtext = inputCommandText;
31    }
32    //讀寫屬性InputCommandText實現輸入或讀取命令字符串
33    public string InputCommandText
34    {
35      get
36      {
37        return inputCommandtext;
38      }
39      set
40      {
41        if (value != "")
42        {
43          this.inputCommandtext = value;
44        }
45      }
46    }
47    //只讀屬性SourceFileName
48    public string SourceFileName
49    {
50      get
51      {
52        return sourceFilename;
53      }
54    }
55    //只讀屬性TargetFileName
56    public string TargetFileName
57    {
58      get
59      {
60        return targetFilename;
61      }
62    }
63    //有參執行copy con命令方法
64    public void ExecuteCopyConCommand(string inputCommandText)
65    {
66      if (inputCommandText != "")
67      {
68        this.inputCommandtext = inputCommandText;
69        //開始實現Copy命令
70        DoneCopyCon();
71      }
72      else
73      {
74        Console.WriteLine("**Copy命令不能為空**");
75        return;
76      }
77    }
78    //無參執行copy con 方法
79    public void ExecuteCopyConCommand()
80    {
81      if (inputCommandtext == "")
82      {
83        Console.WriteLine("**Copy命令不能為空**");
84        return;
85      }
86      //開始實現Copy命令
87      DoneCopyCon();
88    }
89
90    //實現Copy命令的方法
91    private void DoneCopyCon()
92    {
93      //ConsoleKeyInfo ckis=new ConsoleKeyInfo(Convert.ToChar("\x001A"),ConsoleKey.Z,false,true,false);
94      ConsoleKeyInfo cki = new ConsoleKeyInfo();
95      
96      String[] strs = inputCommandtext.Split(new char[] { ' ' });
97      string inputFileText = "";
98
99      if (strs.Length > 3 || strs[0] != "copy")//輸入命令字符串不合法
100      {
101        Console.WriteLine("您輸入的copy命令不正確!!");
102        return;
103      }
104
105      else
106      {
107        if (strs[1] == "con")  //從控制台中接收字符串寫入文件中
108        {
109      //*******************
110          //因ConsoleKey枚舉中沒有Ctrl鍵的值,但注意可用單步調試的方法來,查看在控制台中輸入Ctrl+Z的值是多少
111          //在單步調試的調試狀態下,輸入Ctrl+Z得知cki.KeyChar的值是26,於是我們可以利用這一值來進行轉換比較即可
112          Console.WriteLine("開始往文件{0}寫入字符串(按Ctrl+Z或End結束並寫入):",strs[2]);
113          while (true)
114          {
115            cki = Console.ReadKey();
116            if (cki.Key == ConsoleKey.End||(int)cki.KeyChar==26) //只實現了按End建就結束並寫入文件
117            {                //但Ctrl+Z還沒實現
118              break;
119            }
120            inputFileText += cki.KeyChar.ToString();
121          }
122          System.IO.StreamWriter sw = new System.IO.StreamWriter(strs[2]);
123          sw.Write(inputFileText);
124          sw.Close();
125          Console.WriteLine("寫入文件{0}成功.", strs[2]);
126          return;
127        }
128       //*******************
129        else
130        {
131          if (strs[2] == "con")  //若是讀文件命令
132          {
133            Console.WriteLine("開始讀取文件{0}",strs[1]);
134            Console.WriteLine("讀取文件成功,此文件內容如下:");
135            System.IO.StreamReader sr = new System.IO.StreamReader(strs[1]);
136            Console.WriteLine(sr.ReadToEnd());
137            Console.WriteLine("讀取文件已完成.");
138            sr.Close();
139            return;
140          }
141          //以下操作為復制文件時用到
142          //else //開始復制操作
143          //{
144          //  this.sourceFilename = strs[1];
145          //  this.targetFilename = strs[2];
146
147          //  if (strs[1] == strs[2])  //若同名復制就不管了
148          //  {
149          //    Console.WriteLine("同名復制!!");
150          //    return;
151          //  }
152          //  else  //開始復制異名文件
153          //  {
154          //    if (System.IO.File.Exists(strs[2])) //目標文件存在就刪除
155          //    {
156          //      Console.Write(string.Format("您要改寫文件{0}嗎?(Yes/NO/All):", strs[2]));
157          //      string dialogResultStr = Console.ReadLine();
158          //      if
159          //      System.IO.File.Delete(strs[2]);
160          //    }
161          //    System.IO.File.Copy(strs[1], strs[2]);//開始復制文件
162          //    Console.WriteLine("復制源文件{0}到目標文件{1}成功!",strs[1], strs[2]);
163          //  }
164          //}
165        }
166      }
167    }
168  }
169}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved