How to use try, catch, finally, exceptions in Java

1 Answer

0 votes
package javaapplication1;

public class JavaApplication1 {

    public static void main(String[] args) {

	String s = null;
	try {

	    System.out.println(s.length());
            
	} catch (Exception e) {
	    System.out.println(e);
	} finally {
	    System.out.println("Finally");
	}
        System.out.println("last");

    }
}

/*
                   
run:
      
java.lang.NullPointerException
Finally
last
          
 */

 



answered Dec 17, 2016 by avibootz

Related questions

2 answers 297 views
1 answer 217 views
1 answer 174 views
174 views asked Jul 11, 2022 by avibootz
2 answers 298 views
1 answer 197 views
197 views asked Dec 17, 2016 by avibootz
1 answer 232 views
232 views asked Jun 4, 2021 by avibootz
1 answer 235 views
235 views asked Nov 23, 2020 by avibootz
...