netbeans - Possible to create text box in Java Console? -


i'd output line of text box in java console can't find code able so.

i familiar println() , not trying create ui joptionpane.

any great, thanks.

if mean making box within console, need use special character , use loops. need provide values rows , columns somehow before this. example:
for(m=1;m<=rows;m++){ for(c=1;c<=rows;c++){ system.out.print("*"); } system.out.println();

here used "*", _ ,-, etc. can work well. if mean dialog box use joptionpane, other can't help.


Comments

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -