摘要:
/// <summary> /// 实体转换 /// </summary> /// <typeparam name="T"></typeparam> /// <typeparam name="U"></typeparam> /// <param name="tolist"></param> /// 阅读全文
摘要:
记录一下修改GeoServer2.14.1端口的问题 GeoServer默认端口为8080,在安装时候可以配置为其它端口。但是已安装好的GeoServer,如何更改其端口呢? 找到Geoserver的安装目录下的start.ini D:\software\Program Files (x86)\Ge 阅读全文
摘要:
public class ConvertGPS { private static double pi = 3.1415926535897932384626; private static double a = 6378245.0; private static double ee = 0.00669 阅读全文
摘要:
使用windows版本的nginx启动时遇到(1113: No mapping for the Unicode character exists in the target multi-byte code page)这个错误 因为路径里面包含有中文的缘故,只要文件存放的路径没有包含中文的目录即可解决 阅读全文
摘要:
一.nuget引用MongoDB.Driver 二.创建连接 //mongodb://用户名:密码@ip:端口 var client = new MongoClient("mongodb://mogo:mogo123@127.0.0.1:27017"); var database = client. 阅读全文
摘要:
1.导出word合并时,文件锁定被占用,部分代码 public WordprocessingDocument document; public DocExport(string path) { document = WordprocessingDocument.CreateFromTemplate( 阅读全文
摘要:
Redis在使用命令行操作时,如果查看内容中包含中文,会显示16进制的字符串,如图: 解决方案 使用redis-cli客户端时还可以使用redis-cli客户端本身的“--raw”参数在连接redis时用来输出原始内容,如图: 阅读全文
摘要:
解决方案 那是因为设置了用户名和密码,但是没有进行认证导致的错误 db.auth("账号":"密码"); 参考:http://30daydo.com/article/495 阅读全文
摘要:
转自:https://blog.csdn.net/gavinking0110/article/details/78373894?utm_source=blogkpcl12 一、包含中文字符 select * from 表名 where 列名 like '%[吖-座]%' 二、包含英文字符 selec 阅读全文
摘要:
第一步 :安装erlang1.因为RabbitMQ是Erlang编写,安装时,需要先安装Erlang。 下载地址:https://www.erlang.org/downloads 双击安装程序,一直点击next 就行. 2.配置Erlang环境变量 变量名:ERLANG_HOME 变量值就是刚才er 阅读全文