从kepware定时取web api内容
2021-06-30 01:06
标签:space item 间隔 enabled gate 字符串 ali jar 请求 从kepware定时取web api内容 标签:space item 间隔 enabled gate 字符串 ali jar 请求 原文地址:https://www.cnblogs.com/dXIOT/p/9999821.html 1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Linq;
7 using System.Text;
8 using System.Windows.Forms;
9 using Newtonsoft.Json.Linq;
10 using Newtonsoft.Json;
11 using System.Threading.Tasks;
12 using System.Net.Sockets;
13 using System.IO;
14 using System.Net;
15 using System.Timers;
16
17
18 //从kepware取web api内容
19
20
21 namespace kepware_winform_rec
22 {
23 public partial class Form1 : Form
24 {
25 public Form1()
26 {
27 InitializeComponent();
28 }
29
30 string[] nArray = new string[100];
31
32 private void Form1_Load(object sender, EventArgs e)
33 {
34
35
36 //遍历本机的kep web api
37 string ValueName = Get("http://192.168.1.9:39320/iotgateway/browse");
38 JObject json1 = (JObject)JsonConvert.DeserializeObject(ValueName);
39 JArray array = (JArray)json1["browseResults"];
40 //MessageBox.Show(array.ToString());
41 string aa = "";
42 foreach (var jObject in array)
43 {
44 //赋值属性
45 aa = jObject["id"].ToString();//获取字符串中id值
46 listBox1.Items.Add(aa);
47 }
48
49 for (int i = 0; i )
50 {
51 nArray[i] = listBox1.GetItemText(i);
52
53 }
54
55 System.Timers.Timer maxTimer = new System.Timers.Timer();
56 maxTimer.Elapsed += new ElapsedEventHandler(Tmr_Elapsed);
57 // 设置引发时间的时间间隔 此处设置为1秒(1000毫秒)
58 maxTimer.Interval = 3000;
59 maxTimer.Enabled = true;
60 }
61
62 public void Rec()
63 {
64 try
65 {
66 for (int i = 0; i )
67 {
68 string value = Get("http://127.0.0.1:39320/iotgateway/read?ids=" + listBox1.Items[i].ToString());
69 JObject json2 = (JObject)JsonConvert.DeserializeObject(value);
70 JArray array2 = (JArray)json2["readResults"];
71 //MessageBox.Show(json2.ToString());
72 //MessageBox.Show(array2.ToString());
73 string aa2 = "";
74 foreach (var jObject in array2)
75 {
76 //赋值属性
77 aa2 = jObject["v"].ToString();//获取字符串中id值
78 listBox2.Items.Add(aa2);
79 }
80 }
81 }
82 catch
83 { }
84 }
85
86 private void Tmr_Elapsed(object sender, ElapsedEventArgs e)
87 {
88 listBox2.Items.Clear();
89 Rec();
90 }
91
92
93
94 ///
文章标题:从kepware定时取web api内容
文章链接:http://soscw.com/index.php/essay/99622.html