All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.relevantcodes.extentreports.utils.Stream Maven / Gradle / Ivy

/*
* Copyright (c) 2015, Anshoo Arora (Relevant Codes).  All rights reserved.
* 
* Copyrights licensed under the New BSD License.
* 
* See the accompanying LICENSE file for terms.
*/


package com.relevantcodes.extentreports.utils;

import java.util.Scanner;

public class Stream {
	@SuppressWarnings("resource")
	public static String toString(java.io.InputStream is) {
		Scanner scanner = null;
		
	    try {
	    	scanner = new Scanner(is).useDelimiter("\\A");
	    	return scanner.hasNext() ? scanner.next() : "";
	    }
	    catch (Exception e) {
	    	e.printStackTrace();
	    }
	    
		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy