如何在Java中的命令行参数(文件路径)中转义斜杠?

时间:2015-04-08 18:56:49

标签: java command-line escaping command-line-arguments slash

请注意我在Windows下使用NetBeans进行开发。我也在运行JDK 1.8。

程序通过命令行获取一些参数。一个参数是文件路径。用户可以键入-i C:\test。我如何逃避斜线?似乎没有什么工作正常。

public class Test {

    public static void main(String[] args) throws FileNotFoundException, ParseException {
        // Simulate command line execution
        String[] arguments = new String[] { "-i C:\test" };

        // Create Options object
        Options options = new Options();

        // Add options input directory path.
        options.addOption("i", "input", true, "Specify the input directory path");

        // Create the parser
        CommandLineParser parser = new GnuParser();

        // Parse the command line
        CommandLine cmd = parser.parse(options, arguments);

        String inputDirectory = cmd.getOptionValue("i");
        String escaped;

        // Gives error of "invalid regular expression: Unexpected internal error
        escaped = inputDirectory.replaceAll("\\", "\\\\");

        // This does not work
        File file = new File (escaped);
        Collection<File> files = FileUtils.listFiles(file, null, false);

        // This works
        File file2 = new File ("C:\\test");
        Collection<File> files2 = FileUtils.listFiles(file2, null, false);
    }
}

我尝试了replaceAll但是,就像它在代码中所说的那样,它不会编译,并且它返回一个无效的正则表达式错误。

我知道最佳做法是使用File.separator,但老实说,我不知道如何将它应用于命令行参数。也许用户可能会输入相对路径。用户引用的文件路径也可以在任何驱动器上。

如何转义反斜杠以便我可以使用FileUtils遍历每个文件?

非常感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

更换替换

escaped = inputDirectory.replaceAll("\\", "\\\\");

escaped = inputDirectory.replaceAll(Pattern.quote("\\"), Matcher.quoteReplacement("\\\\"));

由于您正在模仿程序中的参数,请考虑

 "-i C:\test"

tabC:

之间实际上是est(即\ t)

正确的方法是:

 "-i C:\\test"

答案 1 :(得分:2)

  

但老实说,我不知道如何将它应用到命令行   参数。

如果您的问题是如何传递命令行参数,您可以在Windows命令提示符中使用java命令,如下所示。

cmd> java Test C:\test1

或者如果你想在项目属性下的netbeans中传递参数 - &gt;跑 然后在arguments字段中添加每个参数,如下所示。

How to pass arguments