只是一個小問題,我想stiop以下螺紋的,但我不知道我應該怎麼做。請幫幫我。谷歌幫助這次沒有用。HowTo-線程停止
new Thread(){
public void run() {
while(!isInterrupted()){
try {
if (sock1!=null){
sock1.setTcpNoDelay(true);
if (btsar1.length > 0) {
dos1 = new DataOutputStream(sock1.getOutputStream());
bwrtr1 = new BufferedWriter(new OutputStreamWriter(
dos1), 300);
dos1.write(btsar1);
set1free = false;
Log.e("Communication", "written(1.1)");
Reader1.reader(4);}
}} catch (IOException e) {
e.printStackTrace();
}catch (NullPointerException e2){
e2.printStackTrace();
}
}
}}.start();
//.interrupt(); <-- or kinda that...
有人可以提供一個好工作的東西,阻止這種情況嗎?
* 「請幫助我。」 *請正確拼寫單詞。這不是一條短信。 –
對不起,我的錯......我有點着急^^ – Ekonion
可能的http://stackoverflow.com/questions/10961714/how-to-properly-stop-the-thread-in-java – Ankit