English 中文(简体)
如果 cmd 无法显示某些字符呢?
原标题:What if cmd cannot display some characters?

如果我在控制台上使用 c# # 我喜欢在控制台上显示输出。 很好, 但有时 cmd 无法显示某些字符 。 比如 : “ 坚/ 强 / 强 ”, 我只能得到“ 强 ”? < / 强 ”? 这在我的 C# 代码中不是编码问题, cmd 只是不能显示 < 强/ 强 / 强 —— 所以如何解决这个问题? 我可以用我的输出来创建. txt, 是的, 可以有效 。 我有其他选项吗? 我可以用 Pshell 2. 0 控制台来显示输出, 但是如何? 或者 PS 也有同样的问题? 任何想法吗? 谢谢您

最佳回答

它为控制台中使用的字体。例如,打开命令提示并尝试粘贴到欧元字符中,然后您可以看到一个问题标记。但如果您右键单击控制台窗口的边框并选择属性 & gt; 字体, 然后选择 Consolas 或 Lucida Console, 您的字符将会被正确显示 。

问题回答

既然您已经使用控制台, 您总是可以使用带有 RichTextBox 控件的简单的双形程序输出。 这甚至允许您在有需要时格式化输出。 如果您将其保留为单一输出格式, 它不会比控制台应用程序更复杂。 而不是 < code> Console. writeLine , 您将会有 < code> rtbPut. Text @ /code> 。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签