houzhongjian
2024-08-02 4a47e4b93f62b5e636ac0e76f3e4ee98e2b83154
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
//package com.iailab;
//
//import org.testng.annotations.Test;
//
//import javax.annotation.Resource;
//
//import java.util.ArrayList;
//import java.util.Calendar;
//import java.util.List;
//
///**
// * @author PanZhibao
// * @Description
// * @createTime 2023年04月25日 16:17:00
// */
//public class OadpTagCollectorTest {
//
//    @Resource
//    private OadpTagCollector tagCollector;
//
//    @Test
//    public void test() {
//        Calendar calendar = Calendar.getInstance();
//        calendar.set(Calendar.MILLISECOND, 0);
//        List<String> tags = new ArrayList<>();
//        tags.add("source=producer-modbus;id=device0.change_random_int32");
//        tags.add("source=producer-modbus;id=device0.change_random_float");
//        tagCollector.collect(calendar.getTime(), tags);
//    }
//
//
//    @Test
//    public void testSp() {
//        String regex = "[+\\-\\*/()\\&&\\||]";
//        String expression = "324123423&&34576||9999||66666+536345";
//        String[] arr = expression.split(regex);
//    }
//}