可能的重复: Java 相当于带有 @ 的 C# 逐字字符串
C# 中的一个示例是:
string path = @"C:\myfile.txt";
另一个例子是这个问题。
Possible Duplicate: Java equivalent of C#'s verbatim strings with @
An example in C# would be:
Another example is the answer to this question.
Java 中没有与 @ 符号等效的东西 - 您必须转义字符串文字中的每个反斜杠。
There is nothing equivalent to the @ symbol in Java - you must escape each and every backslash in a String literal.
String path = "C:\\myfile.txt"; // or "C:/myfile.txt"; // or "C:" + System.getProperty("file.separator") + "myfile.txt";
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
Java 中没有与 @ 符号等效的东西 - 您必须转义字符串文字中的每个反斜杠。
There is nothing equivalent to the @ symbol in Java - you must escape each and every backslash in a String literal.