Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to replace '\\'with '/' in java(Android) and this does not seem to work!

String rawPath = filePath.replace("\\\\", "/");

What is wrong with this ? I have escaped "\" and tried escaping '/' but to no use. Nothing happens to the original string.

    filePath = abc\\xyz(not after escaping two \\, the original string is with two \\)
    rawPath = abc \ xyz
    expected = abc/xyz

Whats the correct way of doing this? (Another Windows file to Android path conversion prob)

share|improve this question
3  
Why not use java.io.File.separator throughout your code? – Chinmay Kanchi Jul 16 '12 at 17:38
Yup - switching to that, just testing some stuff out for now and ran into this , thanks! – Slartibartfast Jul 16 '12 at 17:45

6 Answers

up vote 12 down vote accepted

When using String.replace(String, String) the backslash doesn't need to be escaped twice (thats when using replaceAll - it deals with regex). So:

String rawPath = filePath.replace("\\", "/");

Or using char version:

String rawPath = filePath.replace('\\', '/');
share|improve this answer
backslashes always need to be escaped in java. That has nothing to do with regex. Your suggestion will replace each \` with /`. – assylias Jul 16 '12 at 17:37
A backslash in a String always needs to be escaped in your code unless you intend for it to be used as part of some other escape sequence. – pb2q Jul 16 '12 at 17:38
3  
... twice, of course... (that is why I wrote the comment about replaceAll) – dacwe Jul 16 '12 at 17:38
1  
@dacwe I thought the question was about replacing a sequence of 2 backslashes in a string with a forward slash based on the given example. I might have misunderstood. – assylias Jul 16 '12 at 17:41
Thanks! Well basically what I had was , I was getting a string from my windows environment in this form filepath = "abc\\xyz" (only two '\\') and this worked like a charm – Slartibartfast Jul 16 '12 at 17:49

escape with single slash should be enough. Following is working fine for me.

String rawPath = filePath.replace("\\", "/");

share|improve this answer

You do not need the quad-druple escape,

\\\\

, just simply

\\

.

share|improve this answer
public static void main(String[] args) {
    String s = "foo\\\\bar";
    System.out.println(s);
    System.out.println(s.replace("\\\\", "/"));     
}

will print

foo\\bar
foo/bar
share|improve this answer

If you want to replace a sequence of 2 backslashes in your original string with a single forward slash, this should work:

String filePath = "abc\\\\xyz";
String rawPath = filePath.replace("\\\\", "/");

System.out.println(filePath);
System.out.println(rawPath);

outputs:

abc\\xyz  
abc/xyz
share|improve this answer

Do you really have two backslashes in the String in the first place? That only appears in Java source code. At runtime there will only be one backslash. So the task reduces to changing backslashes to forward slashes (why?). For which you need a regex if you are using replaceAll(), which would require four of them: two for the compiler, and two for the regex, but you aren't using that, you are using replace(), which isn't a regex, so you only need two, one for the compiler and one for itself.

Why are you doing this? It is never necessary to use a backslash in a File path in Java at all, and it is also never necessary to translate them to / unless you are doing URL-like things with them, in which case there are File.toURI() methods and URI and URL classes for that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.