NUL:不适用于Windows但NULL:确实如此

时间:2014-08-17 12:01:10

标签: java windows shell jboss null

在Windows 7计算机上使用JBoss 8 Wildfly Server和JDK 8时遇到以下错误。

在查看源代码后,它试图从“NUL:”创建一个类似于以下代码的FileOutputStream

try {
            new FileOutputStream("NUL:").getChannel();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }

上面给出了FileNotFound异常

在命令提示符下尝试回显(在日志之后)NULL仅起作用

C:\Users\Admin>echo A > NUL:
The system cannot find the file specified.

C:\Users\Admin>
C:\Users\Admin>echo A > NULL:

C:\Users\Admin>
C:\Users\Admin>

当我尝试在我的Windows 8笔记本电脑上执行相同的“NUL:”并给予朋友执行时,它可以正常工作。

查看注册表时,还会出现以下内容

http://technet.microsoft.com/library/Cc976138

它似乎与Windows相关的问题?有谁知道如何使“NUL:”工作。

此致 弥兰陀

0 个答案:

没有答案