用于文件名的字符串具有转义字符“\”。我该如何解决这个问题?

发布于 2024-12-16 19:17:43 字数 200 浏览 0 评论 0原文

PrintWriter out = 
 new PrintWriter("C:\Users\Slerig\Desktop\gnuplot\binary\cannonballOutput.txt");


这是我的示例代码。这很简单。由于反斜杠,它会抛出“无效转义字符”错误。我该如何解决这个问题?顺便说一句,用 Java 编程。

PrintWriter out = 
 new PrintWriter("C:\Users\Slerig\Desktop\gnuplot\binary\cannonballOutput.txt");

This is my sample code. It is quite simple. It throws a "Invalid Escape Character" error because of the backslashes. How do I get around this? Programming in Java btw.

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

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

发布评论

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

评论(3

决绝 2024-12-23 19:17:44

您必须在字符串中使用 \\ 转义 \ (或使用 / 代替)
使用

PrintWriter out = 
 new PrintWriter("C:\\Users\\Slerig\\Desktop\\gnuplot\\binary\\cannonballOutput.txt");

You'll have to escape \ with \\ in your string (or use / instead)
Use

PrintWriter out = 
 new PrintWriter("C:\\Users\\Slerig\\Desktop\\gnuplot\\binary\\cannonballOutput.txt");
百变从容 2024-12-23 19:17:44

您还可以使用 /,如果您不想用 \\ 乱七八糟地放置路径,Java 会自动转换它们。

public class Test
{
    public static void main(final String[] args)
    {
        final File f = new File("C:/tmp");
        for (String s : f.list())
        {
            System.out.println("filename = " + s);
        }
    }
}

You can also use / and Java will convert them automatically if you don't want to litter your paths with \\.

public class Test
{
    public static void main(final String[] args)
    {
        final File f = new File("C:/tmp");
        for (String s : f.list())
        {
            System.out.println("filename = " + s);
        }
    }
}
宫墨修音 2024-12-23 19:17:44

要转义 \ 您只需要使用 \\ 即可:

new PrintWriter("C:\\Users\\Slerig\\Desktop\\gnuplot\\binary\\cannonballOutput.txt");

To escape a \ you just need to use \\ so:

new PrintWriter("C:\\Users\\Slerig\\Desktop\\gnuplot\\binary\\cannonballOutput.txt");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文