java中异常处理finally代码块的处理_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java中异常处理finally代码块的处理

java中异常处理finally代码块的处理

 2014/6/3 13:22:25  JAVA_HOME117  程序员俱乐部  我要评论(0)
  • 摘要:packagecn.javass.hello.servletimpl.vo;importjava.io.*;publicclassTestFinally{publicstaticvoidmain(String[]args){FileInputStreamfs=null;try{fs=newFileInputStream("a.txt");}catch(IOExceptione){System.out.println(e.getLocalizedMessage());System.out
  • 标签:all Java 代码 异常处理 异常
class="java">package cn.javass.hello.servletimpl.vo;
import java.io.*;
public class TestFinally
 
{
	public static void main(String[] args) 
	{
      FileInputStream fs=null;
	  try{
	      fs=new FileInputStream("a.txt");
	  }catch(IOException e){
	     System.out.println(e.getLocalizedMessage());
		System.out.println(e.getMessage());
		System.out.println(e.toString());
		e.printStackTrace();
		return ;
		//System.exit(1);
	  }finally{
	     if(fs!=null){
			 try{
		   fs.close();
			 }catch(Exception e){
			   e.printStackTrace();
			 }
		 }
        System.out.println("程序始终要执行finally里的代码!");
	  }

		System.out.println("Hello World!");
	}
}
发表评论
用户名: 匿名