Two ways that Java unexpectedly shuts down resources

Source: Internet
Author: User

Try-catch-finally commonly used to determine if the stream is empty when the exception is closed

 Public classCloseableutils { Public Static voidcloseable (closeable ... closeio) { for(closeable Clo:closeio) {if(clo!=NULL) {                Try{clo.close (); } Catch(IOException e) {System.out.println (Dateutils.getnowtime ()+clo.getclass (). GetName () + "Off exception occurred" +e); }            }        }    }}

try-with-resources , which automatically closes the resources in parentheses without manually adding code

Attention:
1. Resource must inherit from java.lang.AutoCloseable 2. Definitions and assignments must all be done in a try
Try NULL ;) {    new fileoutputstream ( ")")    ; Catch (IOException e) {        e.printstacktrace ();}

Two ways that Java unexpectedly shuts down resources

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.