Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
495 views
in Technique[技术] by (71.8m points)

java - Invalid escape sequence (valid ones are  f ” ' \ )" syntax error

print(" $$$$$$           $$$$$        $$$$$$        $$   $$ "+newline+
      "$$  __$$          \__$$ |      $$  __$$       $$ |  $$ |"+newline+
      "$$ /  $$ |            $$ |      $$ /  $$ |      $$ $$  |"+newline+
      "$$$$$$$$ |            $$ |      $$$$$$$$ |       $$$$  /"+newline+
      "$$  __$$ |      $$   $$ |      $$  __$$ |       $$  $$< "+newline+
      "$$ |  $$ |      $$ |  $$ |      $$ |  $$ |      $$  /$$"+newline+
      "$$ |  $$ |      $$$$$$  |      $$ |  $$ |      $$ /  $$ |"+newline+
      "\__|  \__|       \______/       \__|  \__|      \__|  \__|"+newline);

Hi all ! I am just trying to add ascii art to my games gui, and I get this error? How do I resolve this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The backslash character is an escape character in Java. The compiler thinks that you are attempting to escape the next character, and \_ is an invalid escape sequence. You need to escape the backslash itself. Replace every with \.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...