如何为字符串赋值“”hello“”?

时间:2013-01-19 20:47:26

标签: java string

我希望引号(")成为字符串的一部分。即System.out.println(myString); 应输出"hello" 而不只是hello

2 个答案:

答案 0 :(得分:11)

你必须逃避引号:

String myString = "\"hello\"";

This page of the Java specification提供了有关字符串文字和转义序列的所有必要详细信息。

答案 1 :(得分:2)

使用双引号添加escape character (\)"\"hello\""