문제

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