Java InputStream Create toInputStream(final String input, final String encoding)

Here you can find the source of toInputStream(final String input, final String encoding)

Description

Convert the specified string to an input stream, encoded as bytes using the specified character encoding.

License

Apache License

Parameter

Parameter Description
input the string to convert
encoding the encoding to use, null means platform default

Exception

Parameter Description
IOException if the encoding is invalid

Return

an input stream

Declaration

public static InputStream toInputStream(final String input, final String encoding) throws IOException 

Method Source Code

//package com.java2s;
/*/*from   www.  jav a 2  s  . com*/
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */

import java.io.ByteArrayInputStream;

import java.io.IOException;
import java.io.InputStream;

public class Main {
    /**
     * Convert the specified string to an input stream, encoded as bytes using
     * the default character encoding of the platform.
     * 
     * @param input the string to convert
     * @return an input stream
     * @since Commons IO 1.1
     */
    public static InputStream toInputStream(final String input) {
        final byte[] bytes = input.getBytes();
        return new ByteArrayInputStream(bytes);
    }

    /**
     * Convert the specified string to an input stream, encoded as bytes using
     * the specified character encoding.
     * <p>
     * Character encoding names can be found at <a
     * href="http://www.iana.org/assignments/character-sets">IANA</a>.
     * 
     * @param input the string to convert
     * @param encoding the encoding to use, null means platform default
     * @throws IOException if the encoding is invalid
     * @return an input stream
     * @since Commons IO 1.1
     */
    public static InputStream toInputStream(final String input, final String encoding) throws IOException {
        final byte[] bytes = encoding != null ? input.getBytes(encoding) : input.getBytes();
        return new ByteArrayInputStream(bytes);
    }
}

Related

  1. toInputStream(CharSequence input, String encoding)
  2. toInputStream(CharSequence input, String encoding)
  3. toInputStream(File file)
  4. toInputStream(File file)
  5. toInputStream(final String content)
  6. toInputStream(OutputStream out)
  7. toInputStream(String input)
  8. toInputStream(String input)
  9. toInputStream(String input, String encoding)