gpt4 book ai didi

java - 使用完整目录路径将文件添加到 JEditorPane

转载 作者:行者123 更新时间:2023-12-04 05:39:36 27 4
gpt4 key购买 nike

我已经在网上搜索了一段时间,但我没有找到任何关于它的真实信息......我想知道无论如何可以使用文件完整目录路径打开文件(如java文件) ?

我目前正在使用

FileReader reader = new FileReader(file);
BufferedReader br = new BufferedReader(reader);
jEditorPane.read(br, indexOfFile);

没关系,但是以这种方式添加文件会变得更加复杂,因为我已将应用程序的设计更改为具有 JTree,但我现在无法正确获取文件的索引!

那么有没有办法使用文件路径将文件添加到 JEditorPane?

最佳答案

定义一次静态方法并在任何地方使用它:

public static void loadTextFileIntoEditorPane(String filePath, JEditorPane editor) throws IOException
{
File file = new File(filePath);
editor.setPage(file.toURI().toURL());
}

关于java - 使用完整目录路径将文件添加到 JEditorPane,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11418469/

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