主要是字符串通配符匹配和数字与字符串互转的几个函数. // 通配符模式匹配 int stringmatchlen(const char* p, int plen, const char* s, int slen, int nocase); int stringmatch(const char* p, const char* s, int nocase); // 字节数(如"-1G")转成64位整数 long long memtoll(const char* p, int *err);…
java连接linux Redis遇到的问题 昨天在Linux搭建了Redis服务,今天使用java连接测试了一下.要想使用java连接redis服务,就离不开jedis-2.6.1.jar.使用jedis连接redis十分方便.下面我们测试一下是否连接上redis服务: ); System.out.println("Connection to server sucessfully"); //查看服务是否运行 System.out.println("Server is run…