Possible Duplicate:
In Java, is there a way to write a string literal without having to escape quotes?
private static final String CREATE_TABLE_EXHIBITORS = "CREATE TABLE "users" ("_id" text PRIMARY KEY ,"name" text,"body" text,"image" text,"stand_id" text,"begin" long,"end" long,"changedate" long,"website" text,"facebook" text,"myspace" text,"twitter" text,"festivallink" text,"favorite" integer);";
Let’s say I want this query to be a valid string in Java. Do I have to convert it to escape all double quotes with a trailing slash in front?
e.g. = "CREATE TABLE \"users"\
Or is there a faster way to make this whole query a valid string at once? I thought you could use single quotes around the whole string to do that but that doesn’t work either.
Escaping the double quotes with backslashes is the only way to do this in Java.
Some IDEs around such as IntelliJ IDEA do this escaping automatically when pasting such a String into a String literal (i.e. between the double quotes surrounding a java String literal)
One other option would be to put the String into some kind of text file that you would then read at runtime