Java String use quotes without escape character

后端 未结 3 1002
北恋
北恋 2021-01-12 12:49

I know that it is possible to write double quotes in Java strings by putting \\ symbol before them. But if double quotes are used a lot in a string, is there a

3条回答
  •  鱼传尺愫
    2021-01-12 13:20

    There is no way to escape all subsequent double quotes in code (that I know of). But, I recommend against hard-coding String literals. Instead, I suggest you use a ResourceBundle (or even Properties). One benefit being you don't have to escape String(s) you read in that way.

提交回复
热议问题