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
Post a Comment