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 301 views
1 answer 222 views
1 answer 177 views
177 views asked Jul 11, 2022 by avibootz
2 answers 301 views
1 answer 201 views
201 views asked Dec 17, 2016 by avibootz
1 answer 238 views
238 views asked Jun 4, 2021 by avibootz
1 answer 241 views
241 views asked Nov 23, 2020 by avibootz
...