我希望引号("
)成为字符串的一部分。即System.out.println(myString);
应输出"hello"
而不只是hello
答案 0 :(得分:11)
你必须逃避引号:
String myString = "\"hello\"";
This page of the Java specification提供了有关字符串文字和转义序列的所有必要详细信息。
答案 1 :(得分:2)
使用双引号添加escape character (\)
。 "\"hello\""
。