Below, a piece of code to create a table in console:
System.out.format( "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓%n" );
System.out.format( "┃ Party ┃%n" );
System.out.format( "┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛%n" );
String align = "┃ %-30s ┃%n";
When i execute it from IDE, the output is like:
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Party ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
But after i package classes with mvn package
, those lines show as ?
in output:
????????????????????????????????????????????
? Party ?
????????????????????????????????????????????
Any way to prevent this to show table with question marks? I know using +
or -
would solve but i want it to show like that.