gpt4 book ai didi

java - 用反斜杠替换 Java 字符串中的空格

转载 作者:行者123 更新时间:2023-12-04 04:49:01 30 4
gpt4 key购买 nike

如何用反斜杠替换java字符串中的空格字符?

我试过这个:

String text = " 1 2 3 4 5 6 7 8 9 10";
text = text.replace(" ","\\");
System.out.println(text2);

但看看 eclipse 调试变量中的结果:
text 1 2 3 4 5 6 7 8 9 10
text2 \\1\\2\\3\\4\\5\\6\\7\\8\\9\\10

但在我的日志中结果是不同的:
07-18 14:56:31.049: I/System.out(9177): \1\2\3\4\5\6\7\8\9\10

我想将它与 smb 命令一起使用,以允许目录文件名中有空格。当我在代码中手动设置它时,此命令有效。结果应该是这样的:
source : smb://192.168.0.254/Disque dur/
text = text.replace(" ","\040");
result : smb://192.168.0.254/Disque\040dur/

但是当我使用 replace() 方法时,有双反斜杠...
result : smb://192.168.0.254/Disque\\040dur/

07-18 15:15:10.439: E/Home(9538): jcifs.smb.SmbException: The network name cannot be found.

感谢您的帮助

最佳答案

这样做:

String text = " 1 2 3 4 5 6 7 8 9 10";
text = text.replace(" ","\\\\");
System.out.println(text2);

以反斜杠 (\) 开头的字符是转义序列,对编译器具有特殊意义。
' \\ ' 此时在文本中插入一个反斜杠字符。

您可以在这里阅读更多信息: http://docs.oracle.com/javase/tutorial/java/data/characters.html

关于java - 用反斜杠替换 Java 字符串中的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17724714/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com