3
我在一個框架打開一個文件打開一個文本文件的話,我想強調幾個我明白words.As的,我需要遍歷文件的內容。如何遍歷內容以及我可能用於突出顯示的相關屬性?突出的幾幀中的
UPDATE:我的代碼是這樣的
private JEditorPane editorpane;
JScrollPane editorScrollPane;
public TextEditor()
{
editorpane = new JEditorPane();
editorpane.setEditable(false);
if (filename != null)
{
try
{
File file = new File(filename);
editorpane.setPage(file.toURI().toURL());
}
catch (IOException e)
{
e.printStackTrace();
System.err.println("Attempted to read a bad file ...");
}
}
else
{
System.err.println("File name is wrong");
}
add(editorpane);
}
這個問題的答案有幫助嗎? http://stackoverflow.com/questions/12477579/opening-a-text-file-in-a-frame-using-swing-components如果是這樣,請接受一個。你如何在一個框架中打開一個文件? –