我一直想知道人们如何在命令行中更新上一行。一个很好的例子是在Linux中使用wget命令时。它会创建如下所示的ASCII加载条:
[======>] 37%
当然,加载栏会移动,百分比也会发生变化,但是不会产生新的变化。我不知道该怎么做。有人可以指出我正确的方向吗?
Answers:
我知道有两种方法可以做到这一点:
curses
如果您选择的编程语言具有绑定,请使用该包。谷歌透露了ANSI转义码,这似乎是个好方法。作为参考,下面是C ++中的一个函数:
void DrawProgressBar(int len, double percent) {
cout << "\x1B[2K"; // Erase the entire current line.
cout << "\x1B[0E"; // Move to the beginning of the current line.
string progress;
for (int i = 0; i < len; ++i) {
if (i < static_cast<int>(len * percent)) {
progress += "=";
} else {
progress += " ";
}
}
cout << "[" << progress << "] " << (static_cast<int>(100 * percent)) << "%";
flush(cout); // Required.
}
一种方法是使用当前进度重复更新文本行。例如:
def status(percent):
sys.stdout.write("%3d%%\r" % percent)
sys.stdout.flush()
请注意,我之所以使用sys.stdout.write
而不是print
(这是Python),是因为print
在每行末尾会自动打印“ \ r \ n”(回车换行)。我只想要回车,它将光标返回到行的开头。另外,这flush()
是必需的,因为默认情况下,sys.stdout
仅在换行符之后(或其缓冲区已满)刷新其输出。
以下是我的答案,请使用Windows API控制台(Windows)进行C编码。
/*
* file: ProgressBarConsole.cpp
* description: a console progress bar Demo
* author: lijian <hustlijian@gmail.com>
* version: 1.0
* date: 2012-12-06
*/
#include <stdio.h>
#include <windows.h>
HANDLE hOut;
CONSOLE_SCREEN_BUFFER_INFO bInfo;
char charProgress[80] =
{"================================================================"};
char spaceProgress = ' ';
/*
* show a progress in the [row] line
* row start from 0 to the end
*/
int ProgressBar(char *task, int row, int progress)
{
char str[100];
int len, barLen,progressLen;
COORD crStart, crCurr;
GetConsoleScreenBufferInfo(hOut, &bInfo);
crCurr = bInfo.dwCursorPosition; //the old position
len = bInfo.dwMaximumWindowSize.X;
barLen = len - 17;//minus the extra char
progressLen = (int)((progress/100.0)*barLen);
crStart.X = 0;
crStart.Y = row;
sprintf(str,"%-10s[%-.*s>%*c]%3d%%", task,progressLen,charProgress, barLen-progressLen,spaceProgress,50);
#if 0 //use stdand libary
SetConsoleCursorPosition(hOut, crStart);
printf("%s\n", str);
#else
WriteConsoleOutputCharacter(hOut, str, len,crStart,NULL);
#endif
SetConsoleCursorPosition(hOut, crCurr);
return 0;
}
int main(int argc, char* argv[])
{
int i;
hOut = GetStdHandle(STD_OUTPUT_HANDLE);
GetConsoleScreenBufferInfo(hOut, &bInfo);
for (i=0;i<100;i++)
{
ProgressBar("test", 0, i);
Sleep(50);
}
return 0;
}
bInfo
定义?
作为Greg回答的后续,以下是他功能的扩展版本,该功能允许您显示多行消息。只需传入要显示/刷新的字符串列表或元组即可。
def status(msgs):
assert isinstance(msgs, (list, tuple))
sys.stdout.write(''.join(msg + '\n' for msg in msgs[:-1]) + msgs[-1] + ('\x1b[A' * (len(msgs) - 1)) + '\r')
sys.stdout.flush()
注意:我仅使用Linux终端对此进行了测试,因此您的里程可能在基于Windows的系统上有所不同。
\n
为\r\n
,但仍然无法在Windows上运行它(对吗?)。我收到了←[A←[A
一些消息,我怀疑该'\x1b[A'
序列没有执行应有的操作cmd.exe
。