码迷,mamicode.com
首页 >  
搜索关键字:try    ( 12995个结果
ATL错误处理
_com_issue_error(HRESULT x)throw a _com_error object 1 try 2 { 3 HRESULT hr; 4 ... 5 if (FAILED(hr)) 6 _com_issue_error(hr); ...
分类:其他好文   时间:2014-06-06 11:44:29    阅读次数:199
android时间格式的转化,String,Date,long
longtime=System.currentTimeMillis(); System.out.println(time); SimpleDateFormatformat=newSimpleDateFormat("yyyy-MM-ddHH:mm:ss"); java.util.Dated1=newDate(time); Stringnow=format.format(d1); System.out.println(now); longt=0; try{ java.util.Dated2=format.pa..
分类:移动开发   时间:2014-06-04 12:51:10    阅读次数:474
[转] try catch finally 执行顺序
结论:1、不管有木有出现异常,finally块中代码都会执行;2、当try和catch中有return时,finally仍然会执行;3、finally是在return后面的表达式运算后执行的(此时并没有返回运算后的值,而是先把要返回的值保存起来,管finally中的代码怎么样,返回的值都不会改变,任...
分类:其他好文   时间:2014-06-03 15:03:33    阅读次数:250
Android面向HTTP协议发送post请求
/** * 采用post请求的方式 * * @param username * @param password * @return null表示求得的路径有问题,text返回请求得到的数据 */ public static String postRequest(String username, String password) { try { String p...
分类:移动开发   时间:2014-06-03 04:57:53    阅读次数:263
Android面向HTTP协议发送get请求
/** * 采用get请求的方式 * * @param username * @param password * @return null表示求得的路径有问题,text返回请求得到的数据 */ public static String getRequest(String username, String password) { try { String pat...
分类:移动开发   时间:2014-06-03 04:50:24    阅读次数:232
采用Android中的httpclient框架发送get请求
/** * 采用httpclientGet请求的方式 * * @param username * @param password * @return null表示求得的路径有问题,text返回请求得到的数据 */ public static String httpclientGet(String username, String password) { try { ...
分类:移动开发   时间:2014-06-03 02:22:25    阅读次数:189
Nio学习4——EchoServer在Io,Nio,Nio.2中的实现
阻塞IO实现: public class PlainEchoServer { public void serve(int port) throws IOException { final ServerSocket socket = new ServerSocket(port); try { while (true) { final Socket clientSocket...
分类:其他好文   时间:2014-06-02 23:32:20    阅读次数:357
第一个任务--C# Windows服务(三)
最后就剩下设定时间和部署项目了我的服务进入系统的时候是自启动的,但是如果电脑打开以后这周不是周五那它根本就没有存在的意义,所以要写一个停止服务的方法:/// /// 停止Windows服务/// public static void StopmyService(){ try { strin...
分类:Windows程序   时间:2014-06-02 08:45:55    阅读次数:417
java 二进制流转换为图片
importjava.io.File; importjava.io.FileOutputStream; importjava.io.IOException; importsun.misc.BASE64Decoder; publicStringgetPicFromStreams(){ Stringstr;//存放二进制的流 BASE64Decoderdecoder=newBASE64Decoder(); byte[]bytes; try{ bytes=decoder.decodeBuffer(..
分类:编程语言   时间:2014-06-02 03:08:00    阅读次数:296
在zend framework框架中try{}catch(Exception e){}的跳转问题
在zend framework框架中try{}catch(Exception e){}的跳转问题...
分类:其他好文   时间:2014-06-01 09:56:19    阅读次数:225
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!