我必須在字符串值中將'/'替換爲'\'。在給定的字符串會是這樣:String.replace()?
String url = "//machineName/TestFolder/SampleFile.html";
url = url.replace('/', '\\');
這裏,URL的輸出是這樣的:
\machineNameTestFolderSampleFile.html
爲什麼不能正常更換斜線?所需的輸出應該是:
\\machingName\TestFolder\SampleFile.html
任何想法?
謝謝。
嘗試'url = url.replaceAll('////','\\');' –
我試過了你的代碼 - 我的輸出是'\\ machineName \ TestFolder \ SampleFile.html'。它適用於我。檢查代碼中是否有其他錯誤。 – Slartibartfast
你的代碼對我來說也很好! – Xolve