listlist.reverse()list.sort()list.index(obj):objis theobject to be find out; itreturns index of the found object otherwise raise an exception indicati...
分类:
编程语言 时间:
2014-10-24 01:41:57
阅读次数:
199
说明:(1)异常是指 java 程序运行时(非编译)所发生的非正常情况或错误。 (2)Error 表示应用程序本身无法克服和恢复的一种严重问题,程序只有死的份了,例如,说内存溢出和线程死锁等系统问题。 (3)Exception 表示程序还能够克服和恢复的问题。分为普通异常和系统异常。 ...
分类:
编程语言 时间:
2014-10-23 20:30:41
阅读次数:
220
public
void saveSDCard(String filename,
String filecontent)throws Exception
{
File file =
new File(Environment.getExternalStorageDirectory(),filename);
FileOutputStream outStream =
new FileOu...
分类:
其他好文 时间:
2014-10-23 17:43:54
阅读次数:
148
最近写一个listView中多个listItem布局时,convertView缓存及使用,类似微信的聊天界面的listView,报了一个异常:11-25 15:51:49.076: E/InputEventReceiver(22971): Exception dispatching input ev...
分类:
其他好文 时间:
2014-10-23 16:10:07
阅读次数:
361
一,导出excel1,使用excel模板public void exportLog() throws Exception{ SystemUser currentUsr = getCurrentSystemUser(); //该用户的所有日志 ...
分类:
编程语言 时间:
2014-10-23 15:49:49
阅读次数:
220
最近在rails3.2下修改数据库表的字段,然后想回滚取消操作,但是在执行rake db:rollback命令时,出现错误:...
分类:
数据库 时间:
2014-10-23 12:33:28
阅读次数:
222
Exception 这种异常分两大类运行时异常和非运行时异常(编译异常)。程序中应当尽可能去处理这些异常。 运行时异常:都是RuntimeException类及其子类异常,如NullPointerException(空指针异常)、IndexOutOfBoundsException(下标越界异常).....
分类:
编程语言 时间:
2014-10-22 23:21:13
阅读次数:
301
今天弄一个json字符串解析成array数组报错。。JSONArray.fromObject(str)。。在以前的时候解析成map集合是没问题的。原来是缺一些包。NoClassDefFoundError: org/apache/commons/lang/exception/NestableRunti...
分类:
Web程序 时间:
2014-10-22 15:54:05
阅读次数:
164
argument:实参 attribute:属性 base class:基本类 block:块 character:字符 class:类 comment:注释 complex number:复数 derived class:导出类 dictionary:字典 escape sequence:转义符 exception:异...
分类:
编程语言 时间:
2014-10-22 14:46:49
阅读次数:
187
情景:在eclipse中,执行main方法函数。错误提示:Exception occurred executing command line.Cannot run program “D:\soft\Java\jdk1.6.0_12\bin\javaw.exe” (in directory “E:\D...
分类:
其他好文 时间:
2014-10-22 12:51:51
阅读次数:
192