我一直在尝试解析本地存储在我的 C: 驱动器上的 html 文件,但我一直收到同样的错误
java.io.FileNotFoundException: C:\MyStuff\MyHTMLFile.html (The system cannot find the file specified)
这是我的代码。
Document doc = Jsoup.parse(new File("C:\\MyStuff\\MyHTMLFile.html"), "UTF-8");
我尝试了不同的反斜杠和正斜杠变体,但似乎没有任何效果?