About 105,000 results
Open links in new tab
  1. eclipse - Creating ASCII Art in Java - Stack Overflow

    Oct 2, 2014 · 2 You have to escape special characters you want to print, because the compiler doesn't know, if your " means print " or start/stop a String. Same goes for \. To escape a …

  2. java - Generate an ASCII picture from a string - Stack Overflow

    Jun 16, 2021 · This problem is solved in four steps. Create an ascii art representation (as a 2d rectangular array) for each letter you intend to support. Perhaps these are loaded from a …

  3. java - How to draw an image using ASCII symbols? - Stack Overflow

    Jun 30, 2021 · Draw an ASCII art from an image Let's assume that one character occupies an area of 21×8 pixels. So first you have to scale down the original image and get the average …

  4. Designing a java cat art using ascii - Stack Overflow

    Designing a java cat art using ascii Asked 12 years, 4 months ago Modified 12 years, 4 months ago Viewed 11k times

  5. drawing ASCII art in java - Stack Overflow

    Oct 30, 2011 · drawing ASCII art in java Asked 14 years, 2 months ago Modified 14 years, 2 months ago Viewed 7k times

  6. Any Java libraries for drawing ASCII tables? - Stack Overflow

    Apr 10, 2011 · I need to output data into a console as a table. I was wondering maybe there are some java libraries that would take care of drawing tables in ASCII art, aligning values inside …

  7. java - Creating Ascii Art using for-loops - Stack Overflow

    Mar 25, 2016 · Creating Ascii Art using for-loops Asked 9 years, 9 months ago Modified 9 years, 9 months ago Viewed 2k times

  8. java - Printing multiline ASCII animation in the console - Stack …

    Mar 28, 2021 · java animation console ascii-art edited Mar 28, 2021 at 0:42 Henry Twist 6,072 3 21 51

  9. java - Calling Methods to Generate ASCII Art - Stack Overflow

    Mar 12, 2018 · To whomever reads this, I appreciate you taking your time to do so. Essentially I am attempting to generate this exact ASCII art by calling x amount of methods, I was thinking …

  10. java - Ignore escape sequences in ASCII art - Stack Overflow

    No, Java doesn't have anything like the "verbatim string literals" of C#. If you want to do ASCII art, consider putting it into a text file instead and loading that from the code.