I have a long very long html which needs to be enclosed in Javascript string which in turn is enclosed in Java string as follows:
String html = "javascript:var html='...all goes here...';void(0);";
Now where is written ...all goes here... , there is all html including " and ' and even other special characters. Can I skip them in the Java way?
"...\"..."
? – Spillway