我是 C++ 的初学者,但我设法修改了其他人的代码,最后将 Windows 剪贴板写入文本文件的程序放在一起,将代码页中编码的文本指定为命令行参数程序(例如,MyProg.exe 437)将在代码页 437 中写入文本。如果未指定代码页,程序将在标准 Windows 代码页 1252 中写入文本文件。
问题是如果剪贴板包含(例如)快捷方式或文件,而不是文本,程序会崩溃。CF_TEXT
如果剪贴板中没有数据,有人可以告诉我如何优雅地退出吗?(或者我完全误解了这个问题?)
我一直在寻找没有成功的答案。这是我的 VC2010 代码(我不完全理解,但是当剪贴板包含 时,它似乎可以工作CF_TEXT
;顺便说一下,它不适用于CF_UNICODETEXT
—— 输出只是几个字节。):
#include <stdafx.h>
#include <windows.h>
#include <iostream>
#include <fstream>
#include <codecvt> // for wstring_convert
#include <locale> // for codecvt_byname
using namespace std;
void BailOut(char *msg)
{
fprintf(stderr, "Exiting: %s\n", msg);
exit(1);
}
int main(int argc, char* argv[])
{
std::string codepage = ".1252";
if (argc > 1) {
std::string cpnum = argv[1];
codepage = "."+cpnum;
}
HANDLE clip;
string clip_text = "";
// exit if clipboard not available
if (!OpenClipboard(NULL))
BailOut("Can't open clipboard");
clip = GetClipboardData(CF_TEXT);
clip_text = (char*)clip;
CloseClipboard();
// create conversion routines
typedef std::codecvt_byname<wchar_t,char,std::mbstate_t> codecvt;
std::wstring_convert<codecvt> cp1252(new codecvt(".1252"));
std::wstring_convert<codecvt> outpage(new codecvt(codepage));
std::string OutFile = "#clip.txt"; // output file name
ofstream OutStream; // open an output stream
OutStream.open(OutFile, ios::out | ios::trunc);
// make sure file is successfully opened
if(!OutStream)
{
cout << "Error opening file " << OutFile << " for writing.\n";
return 1;
}
// convert to DOS/Win codepage number in "outpage"
OutStream << outpage.to_bytes(cp1252.from_bytes(clip_text)).c_str();
OutStream << endl;
OutStream.close(); // close output stream
return 0;
}
对于如何解决最后一个问题的任何建议,我将不胜感激。