欢迎来到天天文库
浏览记录
ID:35478111
大小:63.15 KB
页数:9页
时间:2019-03-25
《java第八次实验:异常处理》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、第八次实验:异常处理一、实验目的了解异常的概念以及如何定义、抛出和捕捉处理异常。二、实验要求1.编写一个程序,用來捕获各种类型的异常2.编写一个程序,用来说明异常处理块屮各个语句块的作用3.熟悉异常的类型及其产生的原因三、实验内容(-)Java的异常类型识别1.请看以下定义Strings=null;⑴if((s!=null)&(s.length()>()));⑵if((s!=null)&&(s.lenglh()>0));⑶if((s==null)
2、(s.length()==0));⑷if((s==null)
3、
4、(s.length()==0))2.请在实验报告中指
5、出上面四个语句中,哪儿个会引发异常?会引发哪种类型的异常?(二)捕获并处理各种类型的异常1.编写ExceptionTest.java程序文件,源代码如下。importjava.io.*;publicclassExceptionTest{publicstaticvoidmain(Stringargsf]){for(inti=0;i<4;i++){intk;try{switch(i){case0:intzero=0;k=911/zero;break;case1:intb[]=null;k=b[0];break;case2:intc[]=newint[2];k=c[9
6、];break;case3:charch="abc'charAt(99);break;}}catch(Exceptione){System.out.println("Testcase#”+i+Mn);System.out.println(e);1.编译、运行2.根据运行结果,请在实验报告川说明程序运行屮总共捕捉了儿个异常,并指出每个异常各自属于哪种类型的异常?(三)了解异常处理模块中各个语句块的功能1.编写TryTest.java程序文件,源代码如下。importjava.io.*;publicclassTryTest{publicTryTest(){
7、try{inta[]=newint[2];a⑷=3;System,out.printingAfterhandlingexceptionreturnhere?”);}catch(IndexOutOfBoundsExceptione){System.err.println(Hexceptionmsg:H+e.getMessage());System.erEprintlnC1exceptionstring:M+e.toStringO);e.printStackTrace();}finally}System.out.println(nfinallyM);System.o
8、ut.println(MNoexception?1');publicstaticvoidmain(Stringargsf]){newTryTest();2.编译、运行1.根据运行结果,将程序的运行结果写在实验报告屮。2.请在实验报告中指出程序中的语句System.out.println("Afterhandlingexceptionreturnhere?**);有没有被执行?(四)选做题:字符流的输入/输出importjava.io.BufferedReader;importjava.io.File;importjava.io.FilelnputStream;i
9、mportjava.io.FileOutputStream;importjava.io.IOException;importjeiva.io.InputStrecimReader;publicclassT{publicstaticvoidmain(String[]args)throwsIOException{//读入文件FilelnputStreamfis二newFileInputStream(newF订e(〃data,txt"));Buffcrcdf^cadcrbr=newBuffcrcdf^cadcr(newInputStrecimReader(fis));
10、StringBuffersb=newStringBuffer();Stringstr二br.readLineO;while(str!=null){sb.append(str);str=br.readLine();br.close();//统计文件的字符数、非空白字符数和单词to的个数str=sb.toStringO;intcount=str.length();//总共的字符数String[]words=str.splitC“);intcountl=0;//非空白字符数intcount2=0;//to的个数for(Stringword:words){countl+
11、二word,length
此文档下载收益归作者所有