As we all know,we can use
string aa=@"E:dev_workspace1AccessCoreWebRootDataFile"
in c# in order not to double the ''.
But how to do in java?
Unfortunately, there is no full-string escape operator in Java. You need to write the code as:
String aa = "E:\dev_workspace1\AccessCore\WebRoot\DataFile";
1.4m articles
1.4m replys
5 comments
57.0k users