Java InputStream Create toInputStream(String value)

Here you can find the source of toInputStream(String value)

Description

to Input Stream

License

Open Source License

Declaration

public static InputStream toInputStream(String value) throws UnsupportedEncodingException 

Method Source Code

//package com.java2s;
/**/*from  w w w .  j  a  v a  2  s .  c  o m*/
 * Copyright 2012 Red Hat, Inc. and/or its affiliates.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301 USA
 */

import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;

public class Main {
    public static InputStream toInputStream(String value) throws UnsupportedEncodingException {
        if (value == null) {
            return null;
        }
        return new ByteArrayInputStream(value.getBytes("UTF-8"));
    }
}

Related

  1. toInputStream(String input, String encoding)
  2. toInputStream(String result, String encoding)
  3. toInputStream(String s, String charSet)
  4. toInputStream(String source)
  5. toInputStream(String text)
  6. toInputStream(String[] stringArray)
  7. toInputStreamFromBase64(String inBase64String)