今天写程序,遇到了crash,在界面初始化时不会有,想切换到别的tab页就报错了。主要内容如下:Cannot
find an outgoing row head for incoming head UIImageView:0x156caec0.Width{id:
103}, which should...
分类:
移动开发 时间:
2014-05-23 06:48:54
阅读次数:
280
在数据库处于OPEN的状态下,并且所有表空间、数据文件都处于ONLINE状态,登录RMAN进行还原和恢复报错,ORA-19573: cannot obtain exclusive enqueuefor datafile 1。...
分类:
数据库 时间:
2014-05-23 00:03:58
阅读次数:
406
闲来无事登陆服务器发下登陆提示有报错报错提示:Lastlogin:FriMay2301:37:042014from101.71.249.170-bash:ulimit:openfiles:cannotmodifylimit:Operationnotpermitted看提示是没有权限的意思查看登陆需要加载的文件/etc/profile有发现ulimit-n65535ulimit-u10240服务器是禁止r..
分类:
其他好文 时间:
2014-05-22 18:01:59
阅读次数:
307
问题: 在Hadoop中,新建一个目录,报错了,提示mkdir: org.apache.hadoop.hdfs.server.namenode.SafeModeException: Cannot create directory,该如何解决呢?...
分类:
其他好文 时间:
2014-05-22 11:31:11
阅读次数:
304
java.lang.ClassCastException: android.content.res.XmlBlock$Parser cannot be cast to android.view.animation.Animation...
分类:
移动开发 时间:
2014-05-22 09:26:20
阅读次数:
590
如题:解决android上面java.net.UnknownHostException: Unable to resolve host "m.blog.csdn.net": No address associated with hostname的错误:
这是由于我们在开发的过程中没有给模拟器和Manifest开放网络导致的,
解决方法目前有两种:
1、android设备网络连接没打开,例如3...
分类:
移动开发 时间:
2014-05-21 06:46:02
阅读次数:
1745
最近在做毕设的收尾工作,很多程序都要部署到linux下来运行,遇到了挺多问题,昨天就集中性遇到了 在编译应用时,遇到了/usr/bin/ld: cannot
find -lxxx这种情况是系统找不到对应的库文件,其中,-lxxx表示链接库文件 libxxx.so。其命名规则是:lib+库名(即xxx...
分类:
其他好文 时间:
2014-05-19 21:30:52
阅读次数:
226
sun.reflect.generics.reflectiveObjects.TypeVariableImpl cannot be cast to java.lang.Class异常解决方法...
分类:
编程语言 时间:
2014-05-15 23:01:15
阅读次数:
972
??
解决办法:加入相关类的 jar 包到你的 classpath (右键点击某个jar包--build path--config build path...---liberary---Add external jar library),此处加入 servelet-api.jar(此包在eclipse/plugins目录中可以找得到,其他类似的错误也用相同的方法解决) 到 classpath ,...
分类:
编程语言 时间:
2014-05-15 07:08:36
阅读次数:
313
#include
#include
void main(int argc,char *argv[])
{
FILE *in,*out;
if(argc!=3)
{
printf("you forgot to enter a file name\n");
exit(0);
}
if((in=fopen(argv[1],"r"))==NULL)
{
printf("cannot...
分类:
编程语言 时间:
2014-05-14 21:37:56
阅读次数:
321