Java InputStream Create getInputStream(String fname, String enc)

Here you can find the source of getInputStream(String fname, String enc)

Description

Getting an input stream from a file....

License

Apache License

Parameter

Parameter Description
fname a parameter
enc a parameter

Exception

Parameter Description
IOException an exception

Declaration

public static InputStreamReader getInputStream(String fname, String enc) throws IOException 

Method Source Code

//package com.java2s;
/**/* w  ww.  j a  va 2  s  . com*/
 *
 *  Copyright 2009-2013 The MITRE Corporation.
 *
 * 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.
 *
 * **************************************************************************
 *                          NOTICE
 * This software was produced for the U. S. Government under Contract No.
 * W15P7T-12-C-F600, and is subject to the Rights in Noncommercial Computer
 * Software and Noncommercial Computer Software Documentation Clause
 * 252.227-7014 (JUN 1995)
 *
 * (c) 2012 The MITRE Corporation. All Rights Reserved.
 * **************************************************************************
 */

import java.io.*;

public class Main {
    /** Getting an input stream from a file.... Is this easier?
     * @param fname
     * @param enc 
     * @return 
     * @throws IOException  
     */
    public static InputStreamReader getInputStream(String fname, String enc) throws IOException {
        return new InputStreamReader(new FileInputStream(fname), enc);
    }
}

Related

  1. getInputStream(String filename)
  2. getInputStream(String filename)
  3. getInputStream(String filename)
  4. getInputStream(String filePath)
  5. getInputStream(String fileType, String fileName)
  6. getInputStream(String inputFile)
  7. getInputStream(String location)
  8. getInputStream(String parentFolder, String fileName)
  9. getInputStream(String path)