gpt4 book ai didi

java - 无法打开文本文件

转载 作者:行者123 更新时间:2023-12-01 22:40:45 26 4
gpt4 key购买 nike

我调用函数:

Anagrams("http://www.puzzlers.org//pub//wordlists//unixdict.txt");

在我写的函数中:

public static void Anagrams(String path)
{
BufferedReader br;
try {
br = new BufferedReader(new FileReader(path));

我收到一个错误:

java.io.FileNotFoundException: http:\www.puzzlers.org\pub\wordlists\unixdict.txt

但是当我将路径放入浏览器中时,浏览器可以正常打开文件。

最佳答案

您正在尝试通过网络读取 URI,而不是本地系统上的文件。 FileReader 是错误的工具。创建 URI从该字符串调用 openStream() 来获取到它的网络连接,在它周围包装一个 InputStreamReader,然后在它周围包装 BufferedReader。

例如,参见 Oracle's example in their documentation

关于java - 无法打开文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26198647/

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