字符串复制到剪贴板错误

时间:2015-11-25 10:52:51

标签: c# runtime clipboard

我正在尝试读取包含一些我想要复制到剪贴板的命令的文件。在搜索互联网时,我找到了一种如何将数据复制到剪贴板的方法,这是我成功完成的。但是我必须复制多个命令。我正在做一个while循环。这是我的代码。

{
    class Program
    {
        [DllImport("user32.dll")]
        internal static extern bool OpenClipboard(IntPtr hWndNewOwner);

        [DllImport("user32.dll")]
        internal static extern bool CloseClipboard();

        [DllImport("user32.dll")]
        internal static extern bool SetClipboardData(uint uFormat, IntPtr data);

        [STAThread]
        static void Main(string[] args)
        {
            int counter = 0;
            string line;
            // Read the file and display it line by line.
            System.IO.StreamReader file = new System.IO.StreamReader(@"C:\Users\st4r8_000\Desktop\office work\checks documents\interface check commands.txt");
            OpenClipboard(IntPtr.Zero);
            //int x;
            while((line = file.ReadLine()) != null)
            {
                Console.WriteLine (line);

                //clip board copier

                var yourString = line;
                var ptr = Marshal.StringToHGlobalUni(yourString);
                SetClipboardData(13, ptr);

                Marshal.FreeHGlobal(ptr);
                Console.ReadLine();
                //end of clip board copier
                counter++;
                //ptr = x;

            }
            CloseClipboard();
            file.Close();
            // Suspend the screen.
            Console.ReadLine();
        }
    }
}

所以我发现的问题在以下一行Marshal.FreeHGlobal(ptr); 或者可能在SetClipboardData(13, ptr);但我不知道如何解决这个问题。这在第一次运行时非常好,但在第二或第三程序停止响应。任何帮助将不胜感激。

我没有使用Windows表单。我正在尝试在控制台中构建它。

1 个答案:

答案 0 :(得分:1)

您似乎不希望所有 pInvoke 内容,但Clipboard.SetText

using System.Windows.Forms; // to have "Clipboard" class
using System.IO;            // to have "File" class

   ...

课程计划     {

    [STAThread]
    static void Main(string[] args)
    {
        var lines = File.ReadLines(@"C:\Users\st4r8_000\Desktop\office work\checks documents\error log check.txt");

        StringBuilder clipBuffer = new StringBuilder();

        foreach (String line in lines)
        {
            Console.WriteLine(line);

            if (clipBuffer.Length > 0)
                clipBuffer.Append('\n');

            clipBuffer.Append(line);
            Clipboard.SetText(line);
            // Incremental addition; 
            // Clipboard.SetText(line); 
            // if new line should superecede the old one
            //Clipboard.SetText(clipBuffer.ToString());

            Console.ReadLine();
        }
        // Suspend the screen.
        Console.ReadLine();
    }
}