全部文章-月排行
1.导出list集合类型数据文件 生成excel文件代码 效果: 注:.首先下载poi-3.6-20091214.jar,下载地址如下: http://download.csdn.net/detail/evangel_z/3895051 ...
用 vi 命令编辑文本文件,没有文件写入权限的时候会报这个错。:q :wq 怎么都不能退出。 这时只需 ctrl+z 即可,或者在退出命令后加 ! 忽略提示 :q! ...
[debug] [iOS] App is not installed. Will try to install. [MJSONWP] Encountered internal error running command: Error: Installing /var/folders/hb/5xtrk ...
locust--scalable user load testing tool writen in Python(是用python写的、规模化、可扩展的测试性能的工具) 安装locustio需要的环境条件是:Python2.6+,但是不支持Python3。 今天在cmd里运行pip install ...
public String toJSONString(Object obj) { SerializeWriter serializewriter = new SerializeWriter(); JSONSerializer jsonserializer = new JSONSerializer(s ...
IDEA提交代码,一直卡着不动,显示:Commit Changes Dialog local changes refresh 修改方法为: 参考:http://stackoverflow.com/questions/28751247/how-to-control-intellij-idea-14-i ...
目前所在公司使用HttpClient 4.3.3版本发送Rest请求,调用接口。最近出现了调用查询接口服务慢的生产问题,在排查整个调用链可能存在的问题时(从客户端发起Http请求->ESB->服务端处理请求,查询数据并返回),发现原本的HttpClient连接池中的一些参数配置可能存在问题,如def ...
今天打包pod 的时候 出现的错误 -> AFNetworking+RX (3.1.0.18) - ERROR | [iOS] xcodebuild: Returned an unsuccessful exit code. - ERROR | xcodebuild: /Users/ceshi/Lib ...
由于近期要发表论文,不得不恶补LaTex。现在需要插入带大括号的多行公式,效果如下: LaTex编辑如下: \begin{equation} \label{eq6} [x_{i}]=\left\{ \begin{aligned} x_{ac} & , & \mu_{a}(x_{i})\geq \mu ...
前言: 在脚本中加入太多的sleep后会影响脚本的执行速度,虽然implicitly_wait()这种方法隐式等待方法随时一定程度上节省了很多时间。 但是一旦页面上某些js无法加载出来(其实界面元素经出来了),左上角那个图标一直转圈,这时候会一直等待的。 一、参数解释 1.这里主要有三个参数: cl ...
pm2 start app.js --watch[PM2][ERROR] Script already launched, add -f option to force re-execution ...
1,进入【系统管理】->【系统设置】->全局属性:KEY: LANG; VALUE:zh.CH.UTF-8 2,修改Jenkins.xml文件 在Jenkins安装目录下找到jenkins.xml文件 (1)找到<arguments> ……</arguments>,在中间添加-Difile.enco ...
由于Qt界面上TabWidget显示有点小,不好按,调整一下宽高,不过右侧的左右移动隐藏的tab的按钮目前还不知道要怎么处理。 ...
#region 图片转为base64编码的字符串 public string ImgToBase64String(string Imagefilename) { try { Bitmap bmp = new Bitmap(Imagefilename); MemoryStream ms = new M ...
我也是最近开始学习Spring Boot,在执行异步操作的时候总是汇报如下的错误: 我运行的代码如下: main类: 错误分析:错误提示没有这个 com.self.spring.springboot.Jeep' available,但是已经存在这个类,后来查询了一会,非异步操作的时候,我们通过con ...
【node-pre-gyp install --fallback-to-build 错误】 npm install bcrypt时遇上错误 此时,安装node-gyp 然后,再安装bcrypt即可。 参考:https://stackoverflow.com/questions/33463945/no ...
react+antd新建页面步骤: 1.antd创键一个页面从routes开始 2.然后在router.js 里面配置你的页面 3.接下来components 这个时候routes就和components链接通了,页面可以呈现出来了。 4.最后routes和models链接 1.这是models页面 ...
import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.List; /** * 时间范围工具类 * * @author zwq * */ pu... ...
def partitionBy(partitioner: Partitioner): RDD[(K, V)] 该函数根据partitioner函数生成新的ShuffleRDD,将原RDD重新分区。 参考:http://lxw1234.com/archives/2015/07/356.htm ...