I'm using JLine for a console application and I would like to emit text with a strike-through effect.

Is this possible with JLine and how would I do it?

Are there any platform-specific concerns?

有帮助吗?

解决方案

Provided your terminal supports it this is how you would do it:

ANSIBuffer buffer = new ANSIBuffer();
buffer.attrib("Text", 9);
System.out.println(buffer.getAnsiBuffer());

You can also use Jansi:

Ansi ansi = new Ansi();
ansi.a(Ansi.Attribute.STRIKETHROUGH_ON);
ansi.a("Striked");
ansi.reset();
System.out.println(ansi);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top