在 DOS 屏幕上显示进程百分比
我在命令行模式下使用 7zip。
当操作时间较长时,有时会显示进程百分比。
我想知道如果我们想使用 C#/Java 来做到这一点,应该使用什么库?
问候,
I am using 7zip in command line mode.
When the operation takes quite a long time, sometimes there is a process percentage displayed.
I wonder if we want to do this using C#/Java, what library to use?
Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以打印“回车符”(也称为
'\r'
),以将“光标”重置到行的开头。现在,每次打印该行时,您都会返回到开头,因此下一个百分比会覆盖前一个百分比。
You can print a "carriage return", also known as a
'\r'
to reset the "cursor" to the start of the line.Now every time you print the line, you get sent back to the start so the next percent overwrites the previous one.
没有图书馆。您只需打印到控制台 System.out.print (不是 println!),然后发送退格字符来清除该行。
我已经有一段时间没有这样做了,但是应该可以了。
no library. You just print to the console System.out.print (not println!), then send backspace characters to clear the line.
I haven't done this in awhile, but that should do it.
您可以清除控制台以获取踢球...哦,不要忘记 string.format 有百分比支持...
}
You could clear the console for kicks...oh and don't forget string.format has percentage support...
}