gpt4 book ai didi

java - fileNotFoundException 但文件存在

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:00:28 24 4
gpt4 key购买 nike

在我的 FileInputStream 中我得到一个 FileNotFoundException,但我知道他的文件存在,我可以用网络浏览器下载它。

如果我将链接从异常复制到 webbrowser,它也有效。RWX 的权利是给每个人进行测试的,但这无济于事。

文件名中没有特殊符号...我不知道为什么会失败..

谢谢 4 的帮助!

编辑:

KeyStore ts = KeyStore.getInstance("PKCS12");
ts.load(new FileInputStream("http://192.168.1.1/ordner/myFile.p12"), passwKey);
KeyManagerFactory tmf = KeyManagerFactory.getInstance("SunX509");
tmf.init(ts, passwKey);

出于安全原因我更改了链接

最佳答案

你应该使用

InputStream is = new URL("http://stackoverflow.com/").openStream();

而不是 FileInputStream

关于java - fileNotFoundException 但文件存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8310827/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com