As we all know,we can use
string aa=@\"E:\\dev_workspace1\\AccessCore\\WebRoot\\DataFile\"
in c# in order not to double the \'\\\'.
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";