Java tutorial
//package com.java2s; /************************************************************************ * Copyright [2013] [Jamcracker Inc] * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * * @ClassName com.jamcracker.jif.util.JIFUtil * @version 1.0 * @author Prasad P Nair * @date 13-Dec-2012 * @see * /*************************************************************************/ import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; public class Main { /** * readXMLFromFile method reads the template request xml file. * @param inputStream * @return * @throws Exception */ public static String readXMLFromFile(InputStream inputStream) throws Exception { BufferedReader in = null; StringBuffer strBuffer = new StringBuffer(); try { in = new BufferedReader(new InputStreamReader(inputStream)); String str; while ((str = in.readLine()) != null) { strBuffer.append(str + "\n"); } } finally { if (in != null) { in.close(); } } String returnString = strBuffer.toString(); return returnString; } }