我正试图通过网络部署的应用程序从本地pc读取文件。我一直收到 FileNotFoundException
. 我正在使用hadoop文件系统。我想发送到输入流。
InputStream inputStream = null;
FileSystem fileSystem = FileSystem.getLocal(new Configuration());
inputStream = fileSystem.open(new Path("file:///c:/test.pdf"));
我在本地电脑上有一个文件 c:/test.pdf
.
如果我在本地运行应用程序,我可以很好地运行它。但是,如果从网络部署的应用程序运行,我会收到:
java.io.filenotfoundexception:文件:/c:/test.pdf不存在
有办法做到这一点吗?
暂无答案!
目前还没有任何答案,快来回答吧!