넷빈스에서customize 코드 조작을 조심하십시오
NetBeans 6.8 숙제를 하고 편집 인터페이스의 편리함을 이용한다.그러나 사용 과정에서 매우 불편한 부분도 발견할 수 있다. 예를 들어 일부 구성 요소를 수정하려면postinit와post-adding의 차이에 주의해야 한다.
post-init에서 추가한 코드는 선택한 컨트롤을 바꾸지만,post-adding 이후에 추가된 코드는 선택한 컨트롤을 바꾸지 않습니다.
post-init와post-adding 사이에 주석이 있습니다. 꼼꼼히 하세요!!
// Code adding the component to the parent container - not shown here
1.
categoryComboBox = new javax.swing.JComboBox();
categoryComboBox.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
try{
categoryComboBox = this.getComboBox();
} catch (SQLException ex) {
Logger.getLogger(modellibApp.class.getName()).log(Level.SEVERE, null, ex);
}
categoryComboBox.setEditable(true);
// Code adding the component to the parent container - not shown here
2.
categoryComboBox.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
Logger.getLogger(modellibApp.class.getName()).log(Level.SEVERE, null, ex);
}
categoryComboBox.setEditable(true);
// Code adding the component to the parent container - not shown here
try{
categoryComboBox = this.getComboBox();
} catch (SQLException ex) {
Logger.getLogger(modellibApp.class.getName()).log(Level.SEVERE, null, ex);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[JAVA](Swing) 입력 받고 HTTP 요청 보내기 (GET, POST)문자열 입력받기 메이븐 추가 + jackson 추가 (IntelliJ) HTTP 요청 (HttpURLConnection) Java Swing을 이용해 문자열을 입력 받고 해당 문자열을 HTTP 요청 보내는 과정을 설...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.