1
/*------------------------------------------
2
* 模块名称:确保单进程类
3
* 设计作者:张鹏
4
* 设计日期:2009-6-4
5
* 备注:大风扇吹空香皂盒
6
*------------------------------------------*/
7
using System;
8
using System.Collections.Generic;
9
using System.Text;
10
using System.Net.Sockets;
11
using System.IO;
12
using System.Threading;
13
using System.Net;
14
15
namespace aaaSoft
16
{
17
/// <summary>
18
/// 单进程类
19
/// </summary>
20
class SingleProcess
21
{
22
private string GuidString;
23
private int TcpPort;
24
private TcpListener listener;
25
26
/// <summary>
27
/// 构造函数
28
/// </summary>
29
/// <param name="GuidString">唯一标识符</param>
30
/// <param name="TcpPort">监听TCP端口号</param>
31
public SingleProcess(string GuidString, int TcpPort)
32
{
33
this.GuidString = GuidString;
34
this.TcpPort = TcpPort;
35
}
36
37
/// <summary>
38
/// 当第二进程运行时引发
39
/// </summary>
40
public event EventHandler SecondProcessStart;
41
42
/// <summary>
43
/// 开始确保单进程
44
/// </summary>
45
public void Start()
46
{
47
try
48
{
49
listener = new TcpListener(IPAddress.Parse("127.0.0.1"), TcpPort);
50
listener.Start();
51
Thread trdListen = new Thread(Run);
52
trdListen.Start();
53
}
54
catch
55
{
56
//说明已经有实例存在
57
TcpClient client = new TcpClient();
58
client.Connect("127.0.0.1", TcpPort);
59
NetworkStream ns = client.GetStream();
60
byte[] buffer = Encoding.Default.GetBytes(GuidString);
61
ns.Write(buffer, 0, buffer.Length);
62
ns.Close();
63
Environment.Exit(0);
64
}
65
}
66
/// <summary>
67
/// 结束确保单进程
68
/// </summary>
69
public void Stop()
70
{
71
listener.Stop();
72
}
73
74
private void Run()
75
{
76
try
77
{
78
while (true)
79
{
80
TcpClient client = listener.AcceptTcpClient();
81
NetworkStream ns = client.GetStream();
82
StreamReader sr = new StreamReader(ns);
83
string s = sr.ReadToEnd();
84
ns.Close();
85
if (s.Equals(GuidString))
86
{
87
//触发事件
88
SecondProcessStart.Invoke(null, null);
89
}
90
}
91
}
92
catch { }
93
}
94
}
95
}

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

==================================================================
下面是使用示例,仅需要修改Program.cs文件(Demo项目Program.cs文件如下):
==================================================================
1
using System;
2
using System.Collections.Generic;
3
using System.Windows.Forms;
4
5
namespace 单实例运行
6
{
7
static class Program
8
{
9
const int TcpPort = 53256;
10
const string GuidString = "C0DA3908-7F39-45ad-8E5B-CC47064031EA";
11
public static aaaSoft.SingleProcess sp;
12
13
public static Form frmMain;
14
/// <summary>
15
/// 应用程序的主入口点。
16
/// </summary>
17
[STAThread]
18
static void Main()
19
{
20
Application.EnableVisualStyles();
21
Application.SetCompatibleTextRenderingDefault(false);
22
frmMain = new Form1();
23
24
sp = new aaaSoft.SingleProcess(GuidString, TcpPort);
25
sp.SecondProcessStart += new EventHandler(sp_SecondProcessStart);
26
sp.Start();
27
Application.Run(frmMain);
28
sp.Stop();
29
}
30
31
static void sp_SecondProcessStart(object sender, EventArgs e)
32
{
33
frmMain.WindowState = FormWindowState.Normal;
34
frmMain.Show();
35
frmMain.Activate();
36
}
37
}
38
}

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38
