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
http://jxls.sourceforge.net/ InputStream
templateInput = null; InputStream in = null; OutputStream out = null; try {
templateInput ...
分类:
其他好文 时间:
2014-06-03 09:40:13
阅读次数:
212
要看出现的是哪种异常了。如果是使用某些定义好的函数,并且函数本身会产生异常处理方法一般两种: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
server端代码import java.net.*;import java.io.*;public
class ServerTcpListener implements Runnable{public static void main(String[]
args){ try{ final Ser....
分类:
编程语言 时间:
2014-05-28 18:50:18
阅读次数:
352
public static void main(String[] args) { try { long
min = dateDiff("2014-05-27 13:30:00","2014-05-27 13:00:00","yyyy-MM-dd
HH:mm:ss"); System.out...
分类:
编程语言 时间:
2014-05-28 16:16:27
阅读次数:
328
//解析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