java.io.IOException java

时间:2018-06-04 06:03:14

标签: java file resources

我们尝试使用下面的代码从文件中获取字节。

getBytes("/home/1.ks");

在此之前,我们确保文件存在。

public static void getBytes(final String resource) throws IOException {

        File file = new File(resource);
        if (file.exists()) {
            System.out.println("exists");
        } else {
            System.out.println("not exists");
        }

        final InputStream input = APIController.class.getResourceAsStream(resource);
        if (input == null) {
            throw new IOException(resource);
        } else {
            System.out.println("Not null");
        }
    }

这里输出和例外

exists
java.io.IOException: /home/1.ks
    at com.example.demo.controller.APIController.getBytes(APIController.java:164)
    at com.example.demo.controller.APIController.transactionSale(APIController.java:89)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)

1 个答案:

答案 0 :(得分:0)

将您的行更改为:

final InputStream input = new FileInputStream(resource);

当您使用它时,请将参数resource的名称更改为pathfilePath,因为这就是它的真实含义。

这两个概念(文件和资源)是相关的但不相同。资源可以是磁盘上的文件,但它也可以是jar文件中的文件,也可以是从远程URL加载的资源(不经常使用,但可能)。

因为在您的情况下,您知道要访问磁盘上的文件,所以需要使用FileInputStream

另请参阅 What's the difference between a Resource, URI, URL, Path and File in Java? ,以深入解释文件,资源和相关概念之间的差异。