码迷,mamicode.com
首页 >  
搜索关键字:try ... catch ...    ( 15901个结果
图片上传即时显示javascript代码
1.首先是javascript代码/** * 图片上传即时显示javascript */var allowExt = [ 'jpg', 'gif', 'bmp', 'png', 'jpeg' ];var preivew = function(file, container) { try { ...
分类:编程语言   时间:2014-07-22 22:57:55    阅读次数:286
Bitmap上写文字
public Bitmap drawTextToBitmap(Context mContext, int resourceId, String mText) { try { Resources resources = mContext.getResources(); float scale = resources.getDisplayMetri...
分类:其他好文   时间:2014-07-18 21:23:53    阅读次数:258
Java版将EXCEL表数据导入到数据库中
1.采用第三方控件JXL实现try { //实例化一个工作簿对象 Workbook workBook=Workbook.getWorkbook(new File("F://qzlx.xls")); //获取该工作...
分类:数据库   时间:2014-07-18 20:19:33    阅读次数:256
"this" in javascript
In Javascript, the key work "this" is a hard point to understand, in this artical, I will try to explain ittalking about "this", we have to talk about...
分类:编程语言   时间:2014-07-18 20:14:34    阅读次数:223
根级别上的数据无效。 行 1,位置 1
public void Parse(string xml){this.Items=new RssItemCollection();XmlDocument xDoc=new XmlDocument();try{//xDoc.LoadXml(xml);xDoc.LoadXml(xml.Trim());}...
分类:其他好文   时间:2014-07-18 19:22:55    阅读次数:253
关于C#程序无故退出
今天我发现一种情况,分享下我一个对象是用多线程写的代码,主程序调用完后有时候也会退出,catch不到。我在原对象的接口里面加上lock之后就ok了!我的理解是该对象申请的资源没释放完毕,加lock后释放完该资源再执行其他就好了
分类:其他好文   时间:2014-07-17 21:25:07    阅读次数:219
c#32位程序操作64位注册表
1 RegistryKey localKey = RegistryKey.OpenBaseKey(Microsoft.Win32.RegistryHive.LocalMachine, RegistryView.Registry64); 2 try 3 ...
分类:其他好文   时间:2014-07-16 17:04:45    阅读次数:177
C++异常以及异常与析构函数
1. 抛出异常1.1 抛出异常(也称为抛弃异常)即检测是否产生异常,在C++中,其采用throw语句来实现,如果检测到产生异常,则抛出异常。 该语句的格式为: throw 表达式;如果在try语句块的程序段中(包括在其中调用的函数)发现了异常,且抛弃了该异常,则这个异常就可以被try语句块后的某个c...
分类:编程语言   时间:2014-07-16 15:20:46    阅读次数:238
Android下文件的读写
文件的保存 public static boolean saveUserInfo(Context context, String username, String password) { try { // 定义一个文件路径对象 File file = new File(context.getFilesDir(), "info.txt"); // 定义一个文件的写入流...
分类:移动开发   时间:2014-07-16 14:06:44    阅读次数:222
poj 3278 Catch That Cow(广搜)
Catch That Cow Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 45087   Accepted: 14116 Description Farmer John has been informed of the location of a fugitiv...
分类:其他好文   时间:2014-07-16 13:22:55    阅读次数:233
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!