//這些是 C#線程的思路 很簡單的 java以差不多這樣的
using System
namespace Test
{
public partial class Form
{
public Form
{
Form
InitializeComponent()
}
Thread t; //定義一個線程
private void Form
{
t = new Thread(new ThreadStart(sendDate))
t
}
public void sendDate() //定時發送數據
{
int num=
if(check())//你需要的條件
{
while (true) //循環執行的次數
{
for (int i =
{
num++;
Thread
//在這裡寫你要調用的方法 如
cilent()
if(num>
{
t
num=
}
}
}
}
}
private void cilent()
{
MessageBox
}
}
}
From:http://tw.wingwit.com/Article/program/net/201311/13222.html