我正在尝试使用JEditorPane在一个框架中打开一个文本文件(在不可编辑的模式下)。但是,我相信我在设置输入流和输出流方面遇到了问题。请注意我的代码并告诉我哪里做错了。
import java.io.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class TextEditor extends JFrame{
private JEditorPane editorpane;
JScrollPane editorScrollPane;
String filename="D:\\abc.txt";
Reader filereader;
public TextEditor()
{
editorpane= new JEditorPane();
editorpane.setEditable(false);
if (filename != null)
{
try
{
filereader=new FileReader(filename);
editorpane.setPage(filename);
}
catch (IOException e)
{
System.err.println("Attempted to read a bad file " + filename);
}
}
else
{
System.err.println("Couldn't find file");
}
//Put the editor pane in a scroll pane.
editorScrollPane = new JScrollPane(editorpane);
editorScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
editorScrollPane.setPreferredSize(new Dimension(250, 145));
editorScrollPane.setMinimumSize(new Dimension(10, 10));
}
public static void main(String[] args)
{
TextEditor obj= new TextEditor();
obj.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
obj.setSize(600,600);
obj.setLocation(100,100);
obj.setVisible(true);
}
}
答案 0 :(得分:5)
要将参数作为URL
的{{1}},您可以使用:
JEditorPane.setPage
另外,不要忘记将File file = new File(filename);
editorpane.setPage(file.toURI().toURL());
添加到框架中,以便可以看到:
JEditorPane
要查看您要添加的磁盘错误:
add(editorScrollPane);
到e.printStackTrace();
区块。
答案 1 :(得分:2)
editorpane.getEditorKit().read(filereader, editorpane.getDocument(), 0);
答案 2 :(得分:1)
JEditorPane.setPage()需要一个URL,包括协议:try“file:/// D:/abc.txt”。以下代码应该有效:
String filename="file:///D:/abc.txt";
public TextEditor()
{
editorpane= new JEditorPane();
editorpane.setEditable(false);
if (filename != null)
{
try
{
editorpane.setPage(filename);
}
catch (IOException e)
{
System.err.println("Attempted to read a bad file " + filename );
e.printStackTrace();
}
}
else
{
System.err.println("Couldn't find file");
}
//Put the editor pane in a scroll pane.
editorScrollPane = new JScrollPane(editorpane);
editorScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
editorScrollPane.setPreferredSize(new Dimension(250, 145));
editorScrollPane.setMinimumSize(new Dimension(10, 10));
getContentPane().add(editorScrollPane);
}