How to make a “progress bar” using printf? [duplic

2020-06-01 06:44发布

Many command line tools implement text-based progress bar. Like rpm installing:

installing ##############[45%]

the # grows with the percentage, while keeps itself in a single line. What I want is something similar: I need a progress indicator taking just one line, that is to say, when percentage grows, it got overwritten, instead of make a new line(\n).

I tried this:

   #include <stdio.h>

   int main (){
       int i = 0;
       for (i = 0; i < 10000; i++){
           printf("\rIn progress %d", i/100);
       }
       printf("\n");
   }

\r works to overwrite the single line. However, \r brings cursor to the beginning of line and printf brings cursor to the end, which result in a rapidly waving cursor. You guys can feel it by a little compiling. Can Anyone come up with alternatives to avoid this issue?

标签: c printf
5条回答
▲ chillily
2楼-- · 2020-06-01 07:23

This is a problem of the stdout stream being buffered. You have to flush it explicitly (implicit flushing occurs with a \n) using fflush(stdout) after the printf():

fflush(stdout);
查看更多
姐就是有狂的资本
3楼-- · 2020-06-01 07:28

To use formatting on your terminal, check the ANSI escape code.

查看更多
放我归山
4楼-- · 2020-06-01 07:29

Rather than giving your some erroneous and non-portable code lines, I'd recommend you to read through the man pages for your system's termcap and terminfo. It's a bit hard to follow at first, but it's a must-read if your about to start mucking with terminal-dependent code. The Wikipedia pages are a good place to start, but then do give the man pages on your system a read as well.

Also I just realized your question is most definitely a duplicate of a few other questions.

查看更多
Explosion°爆炸
5楼-- · 2020-06-01 07:33

I believe using

printf("\e[?25l");

may be able to help. This will hide the cursor. Honestly, I'm not sure if using /r or printf again will override that bit of code and show the cursor, but it's worth a shot. Also, the below code can be used to show the cursor again.

printf("\e[?25h");
查看更多
看我几分像从前
6楼-- · 2020-06-01 07:38

Here is how the rpm did it, maybe you can write a similar for your own purpose: printHash.

rpm use \b instead of \r to erase the output line character by character.

查看更多
登录 后发表回答