- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章ASP.NET微信公众号客服接口由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例为大家分享了ASP.NET微信客服接口的具体代码,供大家参考,具体内容如下 。
Kf_account.cs代码
1
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
|
public
partial
class
Kf_account : Form
{
private
readonly
DataTable adt_user =
new
DataTable();
private
readonly
string
as_INIFile = Application.StartupPath +
"\\user.ini"
;
public
Kf_account()
{
BindUser();
}
private
void
BindUser()
{
if
(!File.Exists(as_INIFile))
{
var str =
new
StringBuilder();
str.Append(
";内容由程序自动生成,请不要修改此文件内容\r\n"
);
str.Append(
"[total]\r\n"
);
str.Append(
"total=\r\n"
);
str.Append(
"[count]\r\n"
);
str.Append(
"count=\r\n"
);
str.Append(
"[user]\r\n"
);
//StreamWriter sw = default(StreamWriter);
//sw = File.CreateText(ls_INIFile);
//sw.WriteLine(str.ToString());
//sw.Close();
File.WriteAllText(as_INIFile, str.ToString(), Encoding.Unicode);
File.SetAttributes(as_INIFile, FileAttributes.Hidden);
}
CheckForIllegalCrossThreadCalls =
false
;
InitializeComponent();
Icon = Resource1.ico;
lkl_num.Text = INIFile.ContentValue(
"total"
,
"total"
, as_INIFile);
lkl_num_c.Text = INIFile.ContentValue(
"count"
,
"count"
, as_INIFile);
pictureBox1.Visible =
true
;
var sr =
new
StreamReader(as_INIFile, Encoding.Unicode);
String line;
int
li_count = 0;
adt_user.Columns.Clear();
adt_user.Columns.Add(
"username"
, Type.GetType(
"System.String"
));
adt_user.Columns.Add(
"openid"
, Type.GetType(
"System.String"
));
while
((line = sr.ReadLine()) !=
null
)
{
li_count++;
if
(li_count > 6)
{
line = SysVisitor.Current.GetFormatStr(line);
DataRow newRow;
newRow = adt_user.NewRow();
newRow[
"username"
] = line.Substring(0, line.LastIndexOf(
'='
));
newRow[
"openid"
] = line.Substring(line.LastIndexOf(
'='
) + 1);
adt_user.Rows.Add(newRow);
}
}
sr.Close();
dataGridView1.AutoGenerateColumns =
false
;
dataGridView1.DataSource = adt_user;
//dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
lbl_count.Text =
"共"
+ (li_count - 6) +
"行"
;
pictureBox1.Visible =
false
;
}
private
void
btn_GetUser_Click(
object
sender, EventArgs e)
{
if
(MessageBox.Show(
@"拉取用户信息的速度取决于你的关注数与网络速度,
可能需要几分钟甚至更长时间。
使用此功能将消耗大量用户管理接口配额。
要继续此操作吗?"
,
"提示:"
, MessageBoxButtons.YesNo) == DialogResult.No)
{
return
;
}
var thr =
new
Thread(Get_user_list);
thr.Start();
}
private
void
Get_user_list()
{
File.Delete(as_INIFile);
var str =
new
StringBuilder();
str.Append(
";内容由程序自动生成,请不要修改此文件内容\r\n"
);
str.Append(
"[total]\r\n"
);
str.Append(
"total=\r\n"
);
str.Append(
"[count]\r\n"
);
str.Append(
"count=\r\n"
);
str.Append(
"[user]\r\n"
);
File.WriteAllText(as_INIFile, str.ToString(), Encoding.Unicode);
File.SetAttributes(as_INIFile, FileAttributes.Hidden);
string
ls_appid = INIFile.ContentValue(
"weixin"
,
"Appid"
);
string
ls_secret = INIFile.ContentValue(
"weixin"
,
"AppSecret"
);
string
access_token =
""
;
string
menu =
""
;
if
(ls_appid.Length != 18 || ls_secret.Length != 32)
{
MessageBox.Show(
"你的Appid或AppSecret不对,请检查后再操作"
);
return
;
}
access_token = SysVisitor.Current.Get_Access_token(ls_appid, ls_secret);
if
(access_token ==
""
)
{
MessageBox.Show(
"Appid或AppSecret不对,请检查后再操作"
);
return
;
}
menu = SysVisitor.Current.GetPageInfo(
"https://api.weixin.qq.com/cgi-bin/user/get?access_token="
+ access_token);
if
(menu.Substring(2, 7) ==
"errcode"
)
{
MessageBox.Show(
"拉取失败,返回消息:\r\n"
+ menu);
}
JObject json = JObject.Parse(menu);
lkl_num.Text = json[
"total"
].ToString();
INIFile.SetINIString(
"total"
,
"total"
, lkl_num.Text, as_INIFile);
lkl_num_c.Text = json[
"count"
].ToString();
INIFile.SetINIString(
"count"
,
"count"
, lkl_num_c.Text, as_INIFile);
int
li_count =
int
.Parse(json[
"count"
].ToString());
btn_GetUser.Enabled =
false
;
pictureBox1.Visible =
true
;
FileStream fs =
null
;
Encoding encoder = Encoding.Unicode;
for
(
int
i = 0; i < li_count; i++)
{
string
openid, username;
openid = Get_UserName(json[
"data"
][
"openid"
][i].ToString());
username = json[
"data"
][
"openid"
][i].ToString();
//INIFile.SetINIString("user", openid, username, as_INIFile);
byte
[] bytes = encoder.GetBytes(openid +
"="
+ username +
" \r\n"
);
fs = File.OpenWrite(as_INIFile);
//设定书写的開始位置为文件的末尾
fs.Position = fs.Length;
//将待写入内容追加到文件末尾
fs.Write(bytes, 0, bytes.Length);
fs.Close();
lab_nums.Text =
"已拉取"
+ i +
"个,还剩"
+ (li_count - i) +
"个,请耐心等待"
;
}
lab_nums.Text =
""
;
//BindUser();
btn_GetUser.Enabled =
true
;
pictureBox1.Visible =
false
;
MessageBox.Show(
"已全部拉取完毕,请重新打开该窗口"
);
}
/// <summary>
/// 获取用户信息详情,返回json
/// </summary>
/// <param name="as_openid"></param>
private
string
Get_User(
string
as_openid)
{
string
ls_json =
""
;
string
access_token =
""
;
access_token = SysVisitor.Current.Get_Access_token();
ls_json =
SysVisitor.Current.GetPageInfo(
"https://api.weixin.qq.com/cgi-bin/user/info?access_token="
+ access_token +
"&openid="
+ as_openid +
"&lang=zh_CN"
);
return
ls_json;
}
/// <summary>
/// 获取用户用户的昵称
/// </summary>
private
string
Get_UserName(
string
as_openid)
{
string
ls_json =
""
;
ls_json = Get_User(as_openid);
string
username =
""
;
JObject json = JObject.Parse(ls_json);
username = json[
"nickname"
].ToString();
username = SysVisitor.Current.GetFormatStr(username);
return
username;
}
private
void
btn_search_Click(
object
sender, EventArgs e)
{
string
username = txt_search.Text.Trim();
if
(
string
.IsNullOrWhiteSpace(username))
{
return
;
}
DataRow[] datarows = adt_user.Select(
"username like '%"
+ username +
"%'"
);
var ldt =
new
DataTable();
ldt.Columns.Clear();
ldt.Columns.Add(
"username"
, Type.GetType(
"System.String"
));
ldt.Columns.Add(
"openid"
, Type.GetType(
"System.String"
));
ldt = ToDataTable(datarows);
try
{
lbl_count.Text = ldt.Rows.Count.ToString();
}
catch
{
}
dataGridView1.AutoGenerateColumns =
false
;
dataGridView1.DataSource = ldt;
}
public
DataTable ToDataTable(DataRow[] rows)
{
if
(rows ==
null
|| rows.Length == 0)
return
null
;
DataTable tmp = rows[0].Table.Clone();
// 复制DataRow的表结构
foreach
(DataRow row
in
rows)
tmp.Rows.Add(row.ItemArray);
// 将DataRow添加到DataTable中
return
tmp;
}
private
void
dataGridView1_CellMouseClick(
object
sender, DataGridViewCellMouseEventArgs e)
{
try
{
SysVisitor.Current.Wx_openid =
dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Cells[1].Value.ToString();
SysVisitor.Current.Wx_username =
dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Cells[0].Value.ToString();
//MessageBox.Show(str);
grb_chat.Enabled =
true
;
grb_chat.Text = SysVisitor.Current.Wx_username;
}
catch
{
}
webBrowser_msg.DocumentText =
""
;
string
url =
string
.Format(
"https://api.weixin.qq.com/cgi-bin/customservice/getrecord?access_token={0}"
,
SysVisitor.Current.Get_Access_token());
string
ls_text =
@"{"
;
ls_text +=
"\"starttime\" : "
+ DateTime.Now.AddDays(-3).Ticks +
","
;
ls_text +=
"\"endtime\" : "
+ DateTime.Now.Ticks +
","
;
ls_text +=
"\"openid\" : \""
+ SysVisitor.Current.Wx_openid +
"\","
;
ls_text +=
"\"pagesize\" : 1000,"
;
ls_text +=
"\"pageindex\" : 1,"
;
ls_text +=
"}"
;
string
ls_history = SysVisitor.Current.PostPage(url, ls_text);
webBrowser_msg.DocumentText = ls_history;
}
private
void
btn_send_Click(
object
sender, EventArgs e)
{
string
ls_msg = richTextBox_msg.Text;
string
ls_text =
@"{"
;
ls_text +=
"\"touser\":\""
+ SysVisitor.Current.Wx_openid +
"\","
;
ls_text +=
"\"msgtype\":\"text\","
;
ls_text +=
"\"text\":"
;
ls_text +=
"{"
;
ls_text +=
"\"content\":\""
+ ls_msg +
"\""
;
ls_text +=
"}"
;
ls_text +=
"}"
;
string
url =
string
.Format(
"https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token={0}"
,
SysVisitor.Current.Get_Access_token());
string
ls_isright = SysVisitor.Current.PostPage(url, ls_text);
webBrowser_msg.DocumentText +=
"<P align=right><FONT size=3>"
+ ls_isright +
"</FONT></P>"
;
}
private
void
btn_addkf_Click(
object
sender, EventArgs e)
{
string
url =
string
.Format(
"https://api.weixin.qq.com/customservice/kfaccount/add?access_token={0}"
, SysVisitor.Current.Get_Access_token());
//客服账号 设置 xxx@你的公众号 这样的格式才是正确的哟。
string
ls_text =
"{"
;
ls_text +=
"\"kf_account\":test2@gz-sisosoft,"
;
ls_text +=
"\"nickname\":\"客服2\","
;
ls_text +=
"\"password\":\"12345\","
;
ls_text +=
"}"
;
string
ls_kf =
@"{
'kf_account' : 'test1@gz-sisosoft',
'nickname' : '客服1',
'password' : '123456',
}"
;
string
ls_isok = SysVisitor.Current.PostPage(url, ls_text);
MessageBox.Show(ls_isok);
}
private
void
Kf_account_Load(
object
sender, EventArgs e)
{
}
}
|
SysVisitor.cs代码
。
1
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
class
SysVisitor
{
private
static
SysVisitor visit =
null
;
public
static
SysVisitor Current
{
get
{
if
(visit ==
null
)
visit =
new
SysVisitor();
return
visit;
}
}
/// <summary>
/// 获取access_token
/// </summary>
/// <param name="appid">appid</param>
/// <param name="secret">appsecret</param>
/// <returns></returns>
public
string
Get_Access_token(
string
appid,
string
appsecret)
{
string
secondappid = INIFile.ContentValue(
"weixin"
,
"secondappid"
);
if
(appid.ToLower() == secondappid.ToLower())
{
string
ls_time = INIFile.ContentValue(
"weixin"
,
"gettime"
);
Decimal ldt;
try
{
ldt = Convert.ToDecimal(ls_time);
if
(Convert.ToDecimal(DateTime.Now.ToString(
"yyyyMMddHHmmss"
)) - ldt < 7100)
//每两个小时刷新一次
{
return
INIFile.ContentValue(
"weixin"
,
"access_token"
);
}
}
catch
{ }
}
string
ls_appid = appid.Replace(
" "
,
""
);
string
ls_secret = appsecret.Replace(
" "
,
""
);
string
access_token =
""
;
string
url =
string
.Format(
"https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={0}&secret={1}"
, ls_appid, ls_secret);
string
json_access_token = GetPageInfo(url);
//DataTable dt = Json.JsonToDataTable(json_access_token);
DataTable dt = JsonHelper.JsonToDataTable(json_access_token);
try
{
access_token = dt.Rows[0][
"access_token"
].ToString();
}
catch
{
return
""
;
}
INIFile.SetINIString(
"weixin"
,
"gettime"
, DateTime.Now.ToString(
"yyyyMMddHHmmss"
));
INIFile.SetINIString(
"weixin"
,
"access_token"
, access_token);
INIFile.SetINIString(
"weixin"
,
"secondappid"
, ls_appid);
return
access_token;
}
/// <summary>
/// 获取access_token
/// </summary>
public
string
Get_Access_token()
{
string
ls_appid = INIFile.ContentValue(
"weixin"
,
"Appid"
);
string
ls_secret = INIFile.ContentValue(
"weixin"
,
"AppSecret"
);
return
Get_Access_token(ls_appid, ls_secret);
}
/// <summary>
/// Get方法请求url并接收返回消息
/// </summary>
/// <param name="strUrl">Url地址</param>
/// <returns></returns>
public
string
GetPageInfo(
string
url)
{
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
string
ret =
string
.Empty;
Stream s;
string
StrDate =
""
;
string
strValue =
""
;
if
(response.StatusCode == HttpStatusCode.OK)
{
s = response.GetResponseStream();
////在这儿处理返回的文本
StreamReader Reader =
new
StreamReader(s, Encoding.UTF8);
while
((StrDate = Reader.ReadLine()) !=
null
)
{
strValue += StrDate +
"\r\n"
;
}
//strValue = Reader.ReadToEnd();
}
return
strValue;
}
/// <summary>
/// Post方法
/// </summary>
/// <param name="posturl">URL</param>
/// <param name="postData">Post数据</param>
/// <returns></returns>
public
string
PostPage(
string
posturl,
string
postData)
{
Stream outstream =
null
;
Stream instream =
null
;
StreamReader sr =
null
;
HttpWebResponse response =
null
;
HttpWebRequest request =
null
;
Encoding encoding = Encoding.UTF8;
byte
[] data = encoding.GetBytes(postData);
// 准备请求...
try
{
// 设置参数
request = WebRequest.Create(posturl)
as
HttpWebRequest;
CookieContainer cookieContainer =
new
CookieContainer();
request.CookieContainer = cookieContainer;
request.AllowAutoRedirect =
true
;
request.Method =
"POST"
;
request.ContentType =
"application/x-www-form-urlencoded"
;
request.ContentLength = data.Length;
outstream = request.GetRequestStream();
outstream.Write(data, 0, data.Length);
outstream.Close();
//发送请求并获取相应回应数据
response = request.GetResponse()
as
HttpWebResponse;
//直到request.GetResponse()程序才开始向目标网页发送Post请求
instream = response.GetResponseStream();
sr =
new
StreamReader(instream, encoding);
//返回结果网页(html)代码
string
content = sr.ReadToEnd();
string
err =
string
.Empty;
return
content;
}
catch
(Exception ex)
{
string
err = ex.Message;
return
string
.Empty;
}
}
/// <summary>
/// 格式化字符串
/// </summary>
/// <param name="str"></param>
/// <returns></returns>
public
string
GetFormatStr(
string
str)
{
if
(
""
== str)
return
""
;
else
{
str = str.Trim();
str = str.Replace(
"'"
,
"'"
);
str = str.Replace(
"〈"
,
"<"
);
str = str.Replace(
"〉"
,
">"
);
str = str.Replace(
","
,
","
);
return
str;
}
}
string
ls_username =
""
;
/// <summary>
/// 用户名
/// </summary>
public
string
Wx_username
{
get
{
return
ls_username;
}
set
{
ls_username = value;
}
}
string
ls_openid =
""
;
/// <summary>
/// Openid
/// </summary>
public
string
Wx_openid
{
get
{
return
ls_openid;
}
set
{
ls_openid = value;
}
}
}
|
INIFile.cs代码
1
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
class
INIFile
{
///// <summary>
///// 设置INI文件参数
///// </summary>
///// <param name="section">INI文件中的段落</param>
///// <param name="key">INI文件中的关键字</param>
///// <param name="val">INI文件中关键字的数值</param>
///// <param name="filePath">INI文件的完整的路径和名称</param>
///// <returns></returns>
//[DllImport("kernel32")]
//private static extern long WritePrivateProfileString(
// string section, string key, string val, string filePath);
///// <summary>
///// 获取INI文件参数
///// </summary>
///// <param name="section">INI文件中的段落名称</param>
///// <param name="key">INI文件中的关键字</param>
///// <param name="def">无法读取时候时候的缺省数值</param>
///// <param name="retVal">读取数值</param>
///// <param name="size">数值的大小</param>
///// <param name="filePath">INI文件的完整路径和名称</param>
//[DllImport("kernel32")]
//private static extern int GetPrivateProfileString(
// string section, string key, string def, StringBuilder retVal, int size, string filePath);
//static string gs_FileName = System.AppDomain.CurrentDomain.BaseDirectory + "Config.ini";
///// <summary>
///// 获取INI文件参数
///// </summary>
///// <param name="as_section">INI文件中的段落名称</param>
///// <param name="as_key">INI文件中的关键字</param>
///// <param name="as_FileName">INI文件的完整路径和名称</param>
//public static string GetINIString(string as_section, string as_key, string as_FileName)
//{
// StringBuilder temp = new StringBuilder(255);
// int i = GetPrivateProfileString(as_section, as_key, "", temp, 255, as_FileName);
// return temp.ToString();
//}
///// <summary>
///// 获取INI文件参数
///// </summary>
///// <param name="as_section">INI文件中的段落名称</param>
///// <param name="as_key">INI文件中的关键字</param>
///// <param name="as_FileName">INI文件的完整路径和名称</param>
//public static string GetINIString(string as_section, string as_key)
//{
// return GetINIString(as_section, as_key, gs_FileName);
//}
///// <summary>
///// 设置INI文件参数
///// </summary>
///// <param name="as_section">INI文件中的段落</param>
///// <param name="as_key">INI文件中的关键字</param>
///// <param name="as_Value">INI文件中关键字的数值</param>
///// <param name="as_FileName">INI文件的完整路径和名称</param>
//public static long SetINIString(string as_section, string as_key, string as_Value, string as_FileName)
//{
// return WritePrivateProfileString(as_section, as_key, as_Value, as_FileName);
//}
///// <summary>
///// 设置INI文件参数
///// </summary>
///// <param name="as_section">INI文件中的段落</param>
///// <param name="as_key">INI文件中的关键字</param>
///// <param name="as_Value">INI文件中关键字的数值</param>
//public static long SetINIString(string as_section, string as_key, string as_Value)
//{
// return SetINIString(as_section, as_key, as_Value, gs_FileName);
//}
/// <summary>
/// 写入INI文件
/// </summary>
/// <param name="section">节点名称[如[TypeName]]</param>
/// <param name="key">键</param>
/// <param name="val">值</param>
/// <param name="filepath">文件路径</param>
/// <returns></returns>
[DllImport(
"kernel32"
)]
public
static
extern
long
WritePrivateProfileString(
string
section,
string
key,
string
val,
string
filepath);
[DllImport(
"kernel32.dll"
)]
public
extern
static
int
GetPrivateProfileSectionNamesA(
byte
[] buffer,
int
iLen,
string
fileName);
/// <summary>
/// 写入INI文件(section:节点名称 key:键 val:值)
/// </summary>
/// <param name="section">节点名称</param>
/// <param name="key">键</param>
/// <param name="val">值</param>
/// <returns></returns>
public
static
long
SetINIString(
string
section,
string
key,
string
val,
string
as_FilePath =
""
)
{
if
(as_FilePath ==
""
)
{
return
(WritePrivateProfileString(section, key, val, strFilePath));
}
else
{
return
(WritePrivateProfileString(section, key, val, as_FilePath));
}
}
/// <summary>
/// 读取INI文件
/// </summary>
/// <param name="section">节点名称</param>
/// <param name="key">键</param>
/// <param name="def">值</param>
/// <param name="retval">stringbulider对象</param>
/// <param name="size">字节大小</param>
/// <param name="filePath">文件路径</param>
/// <returns></returns>
[DllImport(
"kernel32"
)]
public
static
extern
int
GetPrivateProfileString(
string
section,
string
key,
string
def, StringBuilder retval,
int
size,
string
filePath);
public
static
string
strFilePath = Application.StartupPath +
"\\Config.ini"
;
//获取INI文件默认路径
public
static
string
strSec =
""
;
//INI文件名
/// <summary>
/// 读取INI文件中的内容方法 (Section 节点名称;key 键)
/// </summary>
/// <param name="Section">节点名称</param>
/// <param name="key">键</param>
/// <returns></returns>
public
static
string
ContentValue(
string
Section,
string
key,
string
as_FilePath =
""
)
{
StringBuilder temp =
new
StringBuilder(1024);
if
(as_FilePath ==
""
)
{
GetPrivateProfileString(Section, key,
""
, temp, 1024, strFilePath);
}
else
{
GetPrivateProfileString(Section, key,
""
, temp, 1024, as_FilePath);
}
return
temp.ToString();
}
/// <summary>
/// 获取指定小节所有项名和值的一个列表
/// </summary>
/// <param name="section">节 段,欲获取的小节。注意这个字串不区分大小写</param>
/// <param name="buffer">缓冲区 返回的是一个二进制的串,字符串之间是用"\0"分隔的</param>
/// <param name="nSize">缓冲区的大小</param>
/// <param name="filePath">初始化文件的名字。如没有指定完整路径名,windows就在Windows目录中查找文件</param>
/// <returns></returns>
[DllImport(
"kernel32"
)]
public
static
extern
int
GetPrivateProfileSection(
string
section,
byte
[] buffer,
int
nSize,
string
filePath);
/// <summary>
/// 获取指定段section下的所有键值对 返回集合的每一个键形如"key=value"
/// </summary>
/// <param name="section">指定的段落</param>
/// <param name="filePath">ini文件的绝对路径</param>
/// <returns></returns>
public
static
List<
string
> ReadKeyValues(
string
section,
string
as_FilePath =
""
)
{
byte
[] buffer =
new
byte
[32767];
List<
string
> list =
new
List<
string
>();
int
length = 0;
if
(as_FilePath ==
""
)
{
length = GetPrivateProfileSection(section, buffer, buffer.GetUpperBound(0), strFilePath);
}
else
{
length = GetPrivateProfileSection(section, buffer, buffer.GetUpperBound(0), as_FilePath);
}
string
temp;
int
postion = 0;
for
(
int
i = 0; i < length; i++)
{
if
(buffer[i] == 0x00)
//以'\0'来作为分隔
{
temp = System.Text.ASCIIEncoding.Default.GetString(buffer, postion, i - postion).Trim();
postion = i + 1;
if
(temp.Length > 0)
{
list.Add(temp);
}
}
}
return
list;
}
/// <summary>
/// 删除指定的key
/// </summary>
/// <param name="section">要写入的段落名</param>
/// <param name="key">要删除的键</param>
/// <param name="fileName">INI文件的完整路径和文件名</param>
public
static
void
DelKey(
string
section,
string
key,
string
as_FilePath =
""
)
{
if
(as_FilePath ==
""
)
{
WritePrivateProfileString(section, key,
null
, strFilePath);
}
else
{
WritePrivateProfileString(section, key,
null
, as_FilePath);
}
}
/// <summary>
/// 返回该配置文件中所有Section名称的集合
/// </summary>
public
static
ArrayList ReadSections()
{
byte
[] buffer =
new
byte
[65535];
int
rel = GetPrivateProfileSectionNamesA(buffer, buffer.GetUpperBound(0), strFilePath);
int
iCnt, iPos;
ArrayList arrayList =
new
ArrayList();
string
tmp;
if
(rel > 0)
{
iCnt = 0; iPos = 0;
for
(iCnt = 0; iCnt < rel; iCnt++)
{
if
(buffer[iCnt] == 0x00)
{
tmp = System.Text.ASCIIEncoding.UTF8.GetString(buffer, iPos, iCnt - iPos).Trim();
iPos = iCnt + 1;
if
(tmp !=
""
)
arrayList.Add(tmp);
}
}
}
return
arrayList;
}
}
|
运行结果
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
最后此篇关于ASP.NET微信公众号客服接口的文章就讲到这里了,如果你想了解更多关于ASP.NET微信公众号客服接口的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
当有人使用微信(微信)分享我的一款游戏(用 JavaScript 制作)时,我正在使用 WeixinJSBridge 修改分享参数。 下面的代码位于一个很大的 JavaScript 文件(超过 250
我转微信了padplus来自wechaty-puppet-puppeteer的傀儡并发现它比 wechaty-puppet-puppeteer 更频繁地停止.即,wechaty-puppet-pupp
微信小程序一出,立马炸开了锅,都去搭建自己的开发环境,我这里也来尝尝先,之前发了一篇文章,有人问demo怎么导入? demo源代码(来自网络) 百度: https://pan.baidu.com
微信小程序可谓是今天最火的一个名词了,一经出现真是轰炸了整个开发人员,当然很多app开发人员有了一个担心,微信小程序的到来会不会给移动端app带来一个寒冬,身为一个android开发者我是不相信的,
memcache缓存存储用户信息7000秒 ? 1
微信开发生成带参数的二维码的讲解 在微信公众号平台开发者那里,在“账号管理”那里,有一项功能是“生成带参数的二维码”,通过这儿生成的二维码,只要通过微信扫一扫之后,会把事件自动推送到微信公众号上
某日,一同学给小的发了 Github 源码,说是可以轻松查到删除自己的微信好友,于是就开始了作死之路。 Github 源码请看:0x5e/wechat-deleted-friends 前言
近段时间山西的连续降雨,不少的城市都出现了洪灾,救灾物资匮乏,不少明星及爱心人士都纷纷向山西捐款,那么目前来说山西捐款的通道有哪些呢?在支付宝,微信上如何给山西捐款呢?下面就和小编一起来看看山西捐款
一.集成支付宝支付 支付宝集成官方教程 https://docs.open.alipay.com/204/105295/ 支付宝集成官方demo https://docs.o
一.越来越多的app增加第三方的功能,可能app有不同的页面但调用相同的支付方式,例如界面如下: 这两个页面都会使用第三方支付支付:(微信,支付宝,银联)如果在每一个页面都直接调用第三方支付的
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 8 年前。 Improve this ques
我安装了一个虚假的位置应用程序并将我的位置设置为不同的位置。然后打开谷歌地图和微信应用, Google map 将我的位置显示为我设置的(假的) 微信应用忽略虚假位置并检测真实位置(如何?) 然后我想
前言 支付分APP支付、H5支付、扫码支付等。app支付一般在app中使用,并且需要集成相应的支付SDK,H5支付多用于网页。如果你的APP不想集成支付SDK,又想实现支付功能,你可以在项目中使用
最近一直在调用微信的api,却发现一直调用不成功,纠结了好久,各方面找教程,找官方,官方里的文档也只是写得很模糊,说是按三步走。 1、申请app_id 2、填写包名3、 获取程序签
和平精英QQ/微信 每日登陆抽奖1~188Q币 活动两个QQ和微信都可以 每天登陆游戏并且玩一局 然后可以去活动界面抽奖Q币 QQ端(需玩一局):http://t.cn/Ai1Jn7Tz
目前,当我使用带有 Link 插件的 TinyMce4.5.1 时。即使我将属性 link_list 设置为 false,我也找不到隐藏默认 URL 选项(#top、#bottom)的方法。除了破
实际上,我正在尝试使用微信为我的 Web 应用程序设置 OAuth 登录。所以,我在微信上创建了一个帐户,并使用了一个测试帐户来无限访问。 因此,在测试帐户配置中,我已成功验证来自微信的 token
不管是腾讯还是新浪,查看他们的API,PHP都是有完整的接口,但对C#支持似乎都不是那么完善,都没有,腾讯是完全没有,新浪是提供第三方的,而且后期还不一定升级,NND,用第三方的动辄就一个类库,各种
和平精英QQ/微信 每日登陆抽奖1~188Q币/现金红包 活动两个QQ和微信都可以 QQ的登录游戏和分享好友即可获得三次抽奖次数 微信登录游戏就可以抽奖 如果没有反应就分享链接出去从分享的链接进
我想做什么 我正在尝试将我自己的基于 WebGL 的引擎移植到微信小游戏环境,目前只是尝试让 WebGL 上下文被粉红色清除: 有什么问题 我已经按照腾讯提供的示例以及 ThreeJS 示例来设置游戏
我是一名优秀的程序员,十分优秀!