作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
<分区>
我想获取当前进程的用户名。我正在使用 winapi 标准 GetUsername
函数,如下所示:
TCHAR username[UNLEN + 1];
DWORD size = UNLEN + 1;
GetUserName((TCHAR*)username, &size);
然后像这样打印:
for(int i = 0; i <= UNLEN; i++) if(isalpha(username[i])) cout << (char)(username[i]);
但它输出
Nickiê╕♣■scm+♣■pα┬p♠■≡î■ └M♣■╧*■╔ ■♣ÿ(♣♣(♣♣♣♣ T♣@♣3♣■┐
Nicki
是我正在测试的系统的用户名。我不知道我做错了什么。它编译得很好,我包括在内
#include <Windows.h>
#include <Lmcons.h>
#include <iostream>
#include <ctype.h>
#include <string>
这些 header 。
有人可以帮忙吗!
我是一名优秀的程序员,十分优秀!