Possible Duplicate:
Raw Strings in Java?
In C# there is such a thing as @ ("at sign") that can be put before string if forbidden symbols occurs. For example:
@"a\b\c"
In java I have to put backslashes
"a\\b\\c"
Is there any way in Java to make this easier?