private void CreateExcel() { string header =
string.Empty; string line = string.Empty; try { dltDataBind(); Response.Clear();
Response.Buffer = true;....
分类:
其他好文 时间:
2014-06-29 14:28:54
阅读次数:
235
http://blog.sina.com.cn/s/blog_4f1c99de0100tyty.htmltry{//代码区}catch(Exception
e){//异常处理}代码区如果有错误,就会返回所写异常的处理。首先要清楚,如果没有try的话,出现异常会导致程序崩溃。而try则可以保证程序的正...
分类:
编程语言 时间:
2014-06-07 04:31:31
阅读次数:
308
1.开通WCF调试服务:
须在服务端的行为中作如下配置:includeExceptionDetailInFaults="true" 代码如下:
2.关于WCF客户端信道异常的处理方法,须在catch中新建,且体代码如下: ChannelFactory factory=new ChannelF...
分类:
其他好文 时间:
2014-06-07 03:55:11
阅读次数:
316
http://jxls.sourceforge.net/ InputStream
templateInput = null; InputStream in = null; OutputStream out = null; try {
templateInput ...
分类:
其他好文 时间:
2014-06-03 09:40:13
阅读次数:
212
1.先安装soap扩展sudo yum install
php-soap2.安装openssL3.function issure($sn){//通过soap链接接口 进行确认是否是正确的sn码 try{
$client = new SoapClient("https://118.124.139.23...
分类:
其他好文 时间:
2014-06-03 07:32:16
阅读次数:
280
要看出现的是哪种异常了。如果是使用某些定义好的函数,并且函数本身会产生异常处理方法一般两种:1.自己用try{}catch(){}语句捕获异常并处理。2.在定义接口的后面写上throw
Exception。把异常抛出让使用接口的人处理异常。两种方法都可以。但如果是RuntimeException异常...
分类:
编程语言 时间:
2014-05-30 18:30:53
阅读次数:
429
1 public static String encode(String str) 2 { 3
String code=null; 4 try { 5 MessageDigest digest=MessageDigest.ge...
分类:
其他好文 时间:
2014-05-30 00:26:11
阅读次数:
213
publicstaticvoidmain(String[]argv){try{
System.out.println(“中文”);//1 System.out.println(“中文”.getBytes());//2
System.out.println(“中文”.getBytes(“GB2312″...
分类:
编程语言 时间:
2014-05-29 20:24:06
阅读次数:
424
//解析xml字符串 public void readStringXml(String
xml){Document doc=null;try { //将字符转化为XML doc=DocumentHelper.parseText(xml); ...
分类:
其他好文 时间:
2014-05-28 15:22:53
阅读次数:
264
/*** 添加*/public void save(Stu stu){ try {
tran=this.GetSession().beginTransaction(); this.GetSession().save(stu);
tran.commit(); } catch ...
分类:
系统相关 时间:
2014-05-28 14:32:37
阅读次数:
437