I am trying to write a string to a batch file using Java Filewriter
as following
fw.write("echo Default is: %SDK_ROOT%\\tools\\android-ndk-r10d\r\n");
It gives me the output as :
echo Default is: %HEXAGON_SDK_ROOT% ools\android-ndk-r10d
Its interpreting \tools as a tab space and ools. how to suppress the actual meaning of \t here ?
My desired output should be
echo Default is: %HEXAGON_SDK_ROOT%\tools\android-ndk-r10d
what can I do here ?