Here you can find the source of closeReader(Reader r)
public final static void closeReader(Reader r)
//package com.java2s; //License from project: Open Source License import java.io.Reader; public class Main { public final static void closeReader(Reader r) { if (r != null) try { r.close();/*from w w w.java2 s .c o m*/ } catch (Exception e) { } } }