51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Not
PHP系列 | PHPexcel导入xls格式 ,提示错误:iconv(): Wrong charset, conversion from `CP936' to `UTF-8' is not allowed
导入xls格式(2003版本)时会报错提示错误信息iconv():Wrongcharset,conversionfrom`CP936'to`UTF-8'isnotallowed[/var/www/web/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.p...
代码星球
·
2020-04-03
PHP
系列
PHPexcel
导入
xls
IOS Notification 通知中心
1. 通知中心概述通知中心实际上是在程序内部提供了消息广播的一种机制。通知中心不能在进程间进行通信。实际上就是一个二传手,把接收到的消息,根据内部的一个消息转发表,来将消息转发给需要的对象。通知中心是基于观察者模式的,它允许注册、删除观察者。一个NSNotification...
代码星球
·
2020-04-03
IOS
Notification
通知
中心
Android Exception 6 (adapter is not modified from a background thread)
07-2309:47:34.962:E/AndroidRuntime(7001):java.lang.IllegalStateException:ThecontentoftheadapterhaschangedbutListViewdidnotreceiveanotification.Makesuretheconten...
代码星球
·
2020-04-03
Android
Exception
adapter
is
not
观察者模式的具体应用——通知(notification)机制和KVO(Key-Value-Observing)机制
在CocoaTouch框架中,观察者模式的具体应用有两个——通知(notification)机制和KVO(Key-Value-Observing)机制。 ...
代码星球
·
2020-04-03
机制
观察者
模式
具体
应用
如何用Notepad++运行python程序
1.安装并打开notepad++2.点击“运行”或者F53.在“输入运行程序名”处添加:cmd/Kcd/d$(CURRENT_DIRECTORY)&python$(FULL_CURRENT_PATH)&cd$(CURRENT_DIRECTORY)即可运行...
代码星球
·
2020-04-02
何用
Notepad++
运行
python
程序
Maven错误:was cached in the local repository, resolution will not be reattempted until the update
https://blog.csdn.net/xl890727/article/details/53942452...
代码星球
·
2020-04-02
the
Maven
错误
was
cached
centos搭建 nginx一直报错 file not found.
摘要: filenotfound.nginxphp这个问题是你配置文件的问题:查看就是了不要管nginx如何开启解析PHP的功能?#成功安装后,创建php-fpm.conf配置文件,删除nginx.conf中“passthePHPscriptstoFastCGIfilenotfound.nginx...
代码星球
·
2020-04-02
centos
搭建
nginx
一直
报错
编译安装mmseg提示cannot find input file: src/Makefile.in错误
今天安装中文词检索功能模块coreseek,其中一个分词模块mmseg,编译安装到最后,出现annotfindinputfile:src/Makefile.inaclocal //是一个perl脚本程序,它的定义是:“aclocal-createaclocal.m4byscanningconfig...
代码星球
·
2020-04-02
编译
安装
mmseg
提示
cannot
_mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h':问题的解决 mysql安装python
在win7下安装了Python后,想安装python-MySQL,使用pip安装出现如下问题:>pipinstallMySQL-python_mysql.c(42):fatalerrorC1083:Cannotopenincludefile:'config-win.h':Nosuchfileordirectory...
代码星球
·
2020-04-02
mysql.c
fatal
error
C1083
Cannot
"Cannot read property 'xxx' of undefined" js问题之某属性未定义
1.经常看到前端页面报错,某属性未定义,自己经历一次就好了哈哈2.分析原因 3.主要是因为有空值,此处是'checked'的父级元素没有该数据,所以需要判断父级元素是否有数据 加了判断就OK了 ...
代码星球
·
2020-04-02
quotCannot
read
property
#39xxx
of
fastjson反序列化LocalDateTime失败的问题java.time.format.DateTimeParseException: Text '2019-05-24 13:52:11' could not be parsed at index 10
本地java类importorg.springframework.format.annotation.DateTimeFormat;importjava.time.LocalDateTime;/***问题处理记录*/publicclassUserIssueProcessDto{/***处理说明/privateStrin...
代码星球
·
2020-04-02
fastjson
序列化
LocalDateTime
败的
问题
Io 异常: The Network Adapter could not establish the connection(转)
Io异常:TheNetworkAdaptercouldnotestablishtheconnection这个异常的出现一般与数据库和你的PC的设置有关这种异常的出现大致上有下面几种:1。IP错误。在设置URL时错误,例如:jdbc:oracle:thin:@192.168.0.36:1521:sharp数据库服务器不正...
代码星球
·
2020-04-01
Io
异常
The
Network
Adapter
安装Rational Rose后提示java.lang.ClassNotFoundException
1.在运行中输入regedit回车,打开注册表编辑器2.搜索TrustedClasspath[REG_SZ],因为64位和32位不一样。4.添加值c:windowsjavarustlib;c:windowsjavarustlibosedatamodeler.zip;c:windowsjavarustlibcomwrap...
代码星球
·
2020-04-01
安装
Rational
Rose
提示
java.lang.ClassNotFoundException
Android Studio3.3中Cannot resolve symbol ActivityTestRule
最近在看《Android编程权威指南》,在Windows10下安装了AndroidStudio3.3,边看编练习书中的例子程序,看到第21章“”音频播放与单元测试”中的21.12深入学习:Espresso与整合测试时,发现一个问题:ActivityTestRu...
代码星球
·
2020-04-01
Android
Studio3.3
Cannot
resolve
symbol
CentOS7和Ubuntu18.10下运行Qt Creator出现cannot find -lGL的问题的解决方案
解决方法:缺少相应的opengl的库,需要安装opengl库有两种原因:一种是没有按照libGL库,那么就安装:sudoapt-getinstalllibgl1-mesa-dev一种是装了,但是libGL动态链接库的路径不对,那么就配置一下路径:$locatelibGL/usr/lib/i386-linux-gnu/m...
代码星球
·
2020-04-01
CentOS7
Ubuntu18.10
运行
Qt
Creator
首页
上一页
...
362
363
364
365
366
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他