2017年10月24日 星期二

參數的學習紀錄

常用的函式

//把字串強制轉為數字
Integer.parseInt(字串); 

JLabel

可以放文字,也可以放照片
lblNewLabel_1.setIcon(new mageIcon("C:\\Users\\Administrator\\Pictures\\\u54C8\u59C6\u592A\u90CE\\1-150519155952.jpg"));
以上是放照片的範例

JTextField

2017.10.24
String A1=A.getText();
B.setText(A1);
利用按鈕讓 B 欄讀取 A欄的值 (字串部分)

2017.10.25
Integer A1x= Integer.parseInt(A1.getText()); //取出A1裡面的值,並轉為數值
Integer A2x= Integer.parseInt(A2.getText());

Integer A = A1x+A2x;
B.setText(""+A); //讓B欄顯示A1+A2之後的值,因為是用setText,所以前面一定要加"",目前先學到這邊,以後應該會發現更好的寫法

JComboBox 

JComboBox comboBox = new JComboBox();
//取出下拉式選單的值(字串部分)
comboBox.getSelectedItem().toString();

comboBox.removeAllItems(); //一定要先清空,不然用函式重複additem的時候,會有重複值

沒有留言:

張貼留言