?? my.java
字號:
package com.sterning;
import java.io.DataInputStream;
import javax.swing.DefaultListModel;
public class My implements Runnable {
DataInputStream din;
DefaultListModel model;
My(DataInputStream din, DefaultListModel model) {
this.din = din;
this.model = model;
}
public void run() {
String str1 = "";
while (true) {
try {
str1 = din.readUTF(); // receive the message
// add the message in list box
model.addElement(str1);
} catch (Exception e) {
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -