Java 相当于 C# 的 @ 符号,用于转义 \

发布于 2024-11-29 11:51:44 字数 447 浏览 0 评论 0 原文

可能的重复:
Java 相当于带有 @ 的 C# 逐字字符串

C# 中的一个示例是:

string path = @"C:\myfile.txt";

另一个例子是这个问题。

Possible Duplicate:
Java equivalent of C#'s verbatim strings with @

An example in C# would be:

string path = @"C:\myfile.txt";

Another example is the answer to this question.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

狼亦尘 2024-12-06 11:51:44

Java 中没有与 @ 符号等效的东西 - 您必须转义字符串文字中的每个反斜杠。

There is nothing equivalent to the @ symbol in Java - you must escape each and every backslash in a String literal.

メ斷腸人バ 2024-12-06 11:51:44
String path = "C:\\myfile.txt";
// or "C:/myfile.txt";
// or "C:" + System.getProperty("file.separator") + "myfile.txt";
String path = "C:\\myfile.txt";
// or "C:/myfile.txt";
// or "C:" + System.getProperty("file.separator") + "myfile.txt";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文