Gedit와 같은 멀티탭 편집기를 만들기위한 과제가 있습니다. 그래서 JTabbedPane을 사용하고 생성자에 JTextArea를 추가했습니다. 내가 textarea.cut() 메서드를 사용하는 동안 문제에 직면하고있다; 텍스트 영역은 사용자가 새 탭을 만드는 것처럼 텍스트 영역입니다. 사용자는 잘라 내기, 복사, 붙여 넣기를 구현할 수 있어야합니다. 그래서 tabbedPane.getSelectedComponent() 사용했다.하지만 지금은 그 구성 요소를 jTextArea 변환 할 수 없습니다 그래서 그것을 typecasted 사용됩니다. 질문은 내가 예상 된 출력 즉, 제대로 탭을 추가하지 않습니다 오전 내 질문은 어떻게 추가 할 구성 요소를 깨끗하고 효율적인 방식으로 탭 분할 창에 표시합니다. 그것을하는 어떤 다른 방법든지 환영받습니다.tabbedpane에 텍스트 영역을 올바르게 추가하는 방법
다음은 내 코드 단편입니다.
//components declared in class Editor which extends Jframe
JTextArea textarea ;
JScrollPane scrollpane ;
JTabbedPane tabbedpane ;
public Editor(){
this.setLayout(new FlowLayout());
tabbedpane = new JTabbedPane();
tabbedpane.addTab("File",textarea);
add(tabbedpane);
scrollpane = new JScrollPane(tabbedpane);
getContentPane().add(scrollpane, BorderLayout.CENTER);
//content in my constructor
//also contains other components but are not shown here.
} //end constructor
//add new Tabs
newfile = new JMenuItem("New File");
file.add(newfile);
newfile.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
tabbedpane = new JTabbedPane();
tabbedpane.addTab("File",textarea);
add(tabbedpane);
scrollpane = new JScrollPane(tabbedpane);
getContentPane().add(scrollpane, BorderLayout.CENTER);
}//end actionPerformed
});//end method new
this.add(tabbedpane, BorderLayout.CENTER);
//added cut as JMenuItem to Menu edit Which is then added toJMenuBar
cut = new JMenuItem("Cut");
edit.add(cut);
cut.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ActionEvent){
JTextArea txtarea = new JTextArea();
txtarea = (JTextArea)tabbedpane.getSelectedComponent();
txtarea.cut();
}//end actionPerformed
});//end Method cut