public class Test {
JFrame frame, frame2;
JTextPane textPane,textPane2;
File file;
Icon image;
public Test(){
frame = new JFrame("JTextPane");
frame2 = new JFrame("提取的内容");
textPane = new JTextPane();
textPane2 = new JTextPane();
file = new File("./classes/test/icon.gif");
image = new ImageIcon(file.getAbsoluteFile().toString());
}