Error building Player: CommandInvokationFailure: Failed to re-package resources. See the Console for details.D:\GameDevelopment\adt-bundle-windows-x86...
分类:
其他好文 时间:
2014-07-13 21:36:10
阅读次数:
428
[root@luozhonghua etc]# /usr/local/php/sbin/php-fpm start
Starting php_fpm Jul 12 09:41:02.077951 [ERROR] fpm_unix_conf_wp(), line 124: please specify user and group other than root, pool 'default'
...
分类:
其他好文 时间:
2014-07-13 16:20:24
阅读次数:
225
1.java中throw和throws:throw用在方法内部实际抛出异常的时候;throws用在方法...
分类:
编程语言 时间:
2014-07-12 23:55:58
阅读次数:
344
接口继承和实现继承不同。在 public 继承下, derived classes 总是继承 base class 的接口
class Shape{
public:
virtual void draw() const = 0;
virtual void error(const std::string &msg);
int objectID() const;
//...
};
class Rectangle: public Shape{...};
class Ellipse: public Sha...
分类:
编程语言 时间:
2014-07-12 23:42:27
阅读次数:
251
出现了一大串错误,Error creating bean with name 'userController': Injection of autowired dependencies failed。。。。。
查了代码后发现,原来是在UserServiceImpl中忘了写一句话@Service("userService"),以至于因此导致一系列错误。
在控制层调用业务层,必须在业...
分类:
其他好文 时间:
2014-07-12 22:15:46
阅读次数:
226
启动android模拟器时.有时会报The connection to adb is down, and a severe error has occured.的错误.在网友说在任务管理器上把所有adb.exe关闭掉.重启eclipse.但试过不管用.所以在外国网站上找到一种可行的方法:
1.先把eclipse关闭.
2.在管理器转到你的android SDK 的platform-to...
分类:
数据库 时间:
2014-07-12 21:40:22
阅读次数:
260
关于mindmanager 2012启动无法运行,提示c++错误
---------------------------Microsoft Visual C++ Runtime Library---------------------------Runtime Error!
Program: D:\Program Files\Mindjet\MindManager 10\MindMan...
分类:
其他好文 时间:
2014-07-12 20:28:10
阅读次数:
295
在项目中向MySQL插入数据时,发现数据插入不完整,通过调试,发现插入语句也没什么特殊的错误。但是就是差不进去,于是就打开mysqli错误的调试
$ret = mysqli_query($this->conn, $sql) or die(mysqli_error($this->conn));
结果弹出如下错误信息:
Incorrect string value: '\xF0\x9F...
分类:
数据库 时间:
2014-07-12 17:51:01
阅读次数:
200
由于要编译LTP,LTP在MINGW下又不能编译,所以忍痛安装了VS2010+CMAKE。由于VS在本科时候虐我千百遍,所以一直心存阴影。。。转入正题,当cmake的时候, 它提示“LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏”于是上网搜结果,...
分类:
其他好文 时间:
2014-07-12 16:12:45
阅读次数:
296
遇到如题的问题,google了一番,找到了解决方法,写下来备用问题:udp发送数据时候报错sendto error : Permission denied改正方法:在创建了套接字后,加上下列代码:int on=1; setsockopt(sock,SOL_SOCKET,SO_REUSEADDR | ...
分类:
其他好文 时间:
2014-07-12 16:01:00
阅读次数:
222