OutputStream को InputStream में कैसे बदलें?


337

मैं विकास के चरण पर हूं, जहां मेरे पास दो मॉड्यूल हैं और एक से मुझे एक OutputStreamऔर दूसरे के रूप में आउटपुट मिला , जो केवल स्वीकार करता है InputStream। क्या आप जानते हैं कि कैसे कन्वर्ट OutputStreamकरें InputStream(इसके विपरीत नहीं, मेरा वास्तव में इस तरह से मतलब है) कि मैं इन दो हिस्सों को जोड़ पाऊंगा या नहीं?

धन्यवाद



3
@ c0mrade, सेशन IOUtils.copy जैसा कुछ चाहता है, केवल दूसरी दिशा में। जब कोई किसी OutputStream में लिखता है, तो वह किसी अन्य व्यक्ति के लिए एक इनपुटस्ट्रीम में उपयोग करने के लिए उपलब्ध हो जाता है। यह मूल रूप से PipedOutputStream / PipedInputStream है। दुर्भाग्य से पाइप्ड स्ट्रीम अन्य स्ट्रीम से नहीं बनाई जा सकती हैं।
MeBigFatGuy

तो PipedOutputStream / PipedInputStream समाधान है?
वेपइंट

मूल रूप से PipedStream के लिए आपके मामले में काम करने के लिए, आपके OutputStream की तरह निर्माण करने की आवश्यकता होगी new YourOutputStream(thePipedOutputStream)और new YourInputStream(thePipedInputStream)जो शायद आपके स्ट्रीम के काम करने का तरीका नहीं है। इसलिए मुझे नहीं लगता कि यह समाधान है।
MeBigFatGuy

जवाबों:


109

एक OutputStreamवह है जहां आप डेटा लिखते हैं। यदि कुछ मॉड्यूल एक को उजागर करता है OutputStream, तो उम्मीद यह है कि दूसरे छोर पर कुछ पढ़ना है।

InputStreamदूसरी ओर, एक चीज उजागर करती है , यह संकेत दे रही है कि आपको इस स्ट्रीम को सुनने की आवश्यकता होगी, और एक डेटा होगा जिसे आप पढ़ सकते हैं।

इसलिए यह एक कनेक्ट करने के लिए संभव है InputStreamएक करने के लिएOutputStream

InputStream----read---> intermediateBytes[n] ----write----> OutputStream

जैसा कि किसी ने कहा, यह IOUtils की copy()विधि आपको बताती है। दूसरे रास्ते पर जाने का कोई मतलब नहीं है ... उम्मीद है कि यह कुछ समझ में आता है

अपडेट करें:

निश्चित रूप से जितना अधिक मैं यह सोचता हूं, उतना ही मैं देख सकता हूं कि यह वास्तव में एक आवश्यकता कैसे होगी। मुझे पता है कि कुछ टिप्पणियों में Pipedइनपुट / ouput धाराओं का उल्लेख है, लेकिन एक और संभावना है।

यदि सामने आने वाली आउटपुट स्ट्रीम ए है ByteArrayOutputStream, तो आप toByteArray()विधि को कॉल करके हमेशा पूर्ण सामग्री प्राप्त कर सकते हैं । तब आप ByteArrayInputStreamउप-वर्ग का उपयोग करके एक इनपुट स्ट्रीम रैपर बना सकते हैं । ये दो छद्म धाराएं हैं, ये दोनों मूल रूप से केवल बाइट्स की एक सरणी लपेटते हैं। इसलिए, इस तरह से धाराओं का उपयोग करना तकनीकी रूप से संभव है, लेकिन मेरे लिए यह अभी भी बहुत अजीब है ...


4
प्रतिलिपि () एपीआई के अनुसार ओएस के लिए यह है, मैं इसे पीछे की ओर करने की जरूरत है
Waypoint

1
शीर्ष पर मेरा संपादन देखें, यह मेरे लिए कुछ रूपांतरण करने के लिए nolkarry है
Waypoint

88
Usecase बहुत सरल है: कल्पना करें कि आपके पास क्रमबद्ध पुस्तकालय है (उदाहरण के लिए, JSON के लिए क्रमबद्ध) और एक ट्रांसपोर्ट लेयर (कहते हैं, टॉमकैट) जो एक इनपुटस्ट्रीम लेता है। तो आपको एक HTTP कनेक्शन पर JSON से OutputStream को पाइप करना होगा जो एक इनपुटस्ट्रीम से पढ़ना चाहता है।
JBCP

6
यह उपयोगी है जब इकाई परीक्षण और आप फ़ाइल सिस्टम को छूने से बचने के बारे में सुपर पांडित्य हैं।
जॉन

28
@JBCP की टिप्पणी हाजिर है। एक अन्य उपयोग मामला एक HTTP अनुरोध के दौरान PDF का निर्माण करने के लिए PDFBox का उपयोग कर रहा है। पीडीएफबॉक्स एक पीडीएफ ऑब्जेक्ट को बचाने के लिए एक आउटपुटस्ट्रीम का उपयोग करता है, और बाकी एपीआई क्लाइंट को जवाब देने के लिए एक इनपुटस्ट्रीम को स्वीकार करता है। इसलिए, एक OutputStream -> InputStream एक बहुत ही वास्तविक दुनिया का उपयोग मामला है।
जॉन मेन्को

200

कई लिंक और ऐसे अन्य सामान प्रतीत होते हैं, लेकिन पाइप का उपयोग करके कोई वास्तविक कोड नहीं है। उपयोग करने का लाभ java.io.PipedInputStreamऔर java.io.PipedOutputStreamयह है कि मेमोरी की कोई अतिरिक्त खपत नहीं है। ByteArrayOutputStream.toByteArray()मूल बफर की एक प्रति लौटाता है, तो इसका मतलब है कि आपके पास जो कुछ भी मेमोरी में है, अब आपके पास उसकी दो प्रतियां हैं। फिर एक InputStreamसाधन पर लिखना अब आपके पास डेटा की तीन प्रतियां हैं।

कोड:

// take the copy of the stream and re-write it to an InputStream
PipedInputStream in = new PipedInputStream();
final PipedOutputStream out = new PipedOutputStream(in);
new Thread(new Runnable() {
    public void run () {
        try {
            // write the original OutputStream to the PipedOutputStream
            // note that in order for the below method to work, you need
            // to ensure that the data has finished writing to the
            // ByteArrayOutputStream
            originalByteArrayOutputStream.writeTo(out);
        }
        catch (IOException e) {
            // logging and exception handling should go here
        }
        finally {
            // close the PipedOutputStream here because we're done writing data
            // once this thread has completed its run
            if (out != null) {
                // close the PipedOutputStream cleanly
                out.close();
            }
        }   
    }
}).start();

यह कोड मानता है कि originalByteArrayOutputStreamयह एक प्रकार है ByteArrayOutputStreamक्योंकि यह आमतौर पर केवल प्रयोग करने योग्य आउटपुट स्ट्रीम है, जब तक आप किसी फ़ाइल पर नहीं लिख रहे हैं। आशा है कि ये आपकी मदद करेगा! इसके बारे में महान बात यह है कि चूंकि यह एक अलग धागे में है, यह समानांतर में भी काम कर रहा है, इसलिए जो कुछ भी आपके इनपुट स्ट्रीम का उपभोग कर रहा है वह आपके पुराने आउटपुट स्ट्रीम से भी बाहर हो जाएगा। यह फायदेमंद है क्योंकि बफर छोटा रह सकता है और आपके पास कम विलंबता और कम मेमोरी उपयोग होगा।


21
मैंने इसे वोट दिया, लेकिन बेहतर है कि आप कंस्ट्रक्टर को पास outकर दें in, अन्यथा inरेस की स्थिति (जो मैंने अनुभव की थी) के कारण आपको एक बंद पाइप अपवाद मिल सकता है । जावा 8 लैम्ब्डा का उपयोग करना:PipedInputStream in = new PipedInputStream(out); ((Runnable)() -> {originalOutputStream.writeTo(out);}).run(); return in;
जॉन

1
@JohnManko हम्म ... मैं उस समस्या कभी नहीं था। क्या आपको यह अनुभव हुआ क्योंकि एक और धागा या मुख्य धागा बाहर जा रहा है। क्लोसे ()? यह सच है कि यह कोड मानता है कि आपका PipedOutputStream आपके जीवन की तुलना में लंबा originalOutputStreamहै, जो सच होना चाहिए, लेकिन यह नहीं मानता कि आप अपनी धाराओं को कैसे नियंत्रित करते हैं। इसे डेवलपर तक छोड़ दिया जाता है। इस कोड में कुछ भी नहीं है जो एक बंद या टूटे पाइप अपवाद का कारण होगा।
मायकेहो

3
नहीं, मेरा मामला तब से है जब मैं Mongo GridFS में PDF स्टोर करता हूं, और फिर क्लाइंट से जैक्स-आरएस का उपयोग करके स्ट्रीम करता हूं। MongoDB एक आउटपुटस्ट्रीम की आपूर्ति करता है, लेकिन जैक्स-आरएस को एक इनपुटस्ट्रीम की आवश्यकता होती है। आउटपुट पथ पूरी तरह से स्थापित होने से पहले मेरी पथ विधि एक इनपुटस्ट्रीम के साथ कंटेनर में वापस आ जाएगी, ऐसा लगता है (शायद बफर अभी तक कैश नहीं किया गया था)। वैसे भी, जैक्स-आरएस इनपुटस्ट्रीम पर पाइप बंद अपवाद को फेंक देगा। अजीब है, लेकिन आधे समय में यही हुआ। ऊपर दिए गए कोड में परिवर्तन करने से रोकता है।
जॉन मेन्को

1
@ जॉनमोन्को मैं इसे और अधिक देख रहा था और मैंने PipedInputStreamजावदोस्क से देखा : एक पाइप को टूटा हुआ कहा जाता है यदि एक धागा जो कनेक्टेड पाइप आउटपुट स्ट्रीम को डेटा बाइट्स प्रदान कर रहा था वह अब जीवित नहीं है। इसलिए मुझे संदेह है कि यदि आप ऊपर दिए गए उदाहरण का उपयोग कर रहे हैं, Jax-RSतो इनपुट स्ट्रीम का उपभोग करने से पहले धागा पूरा हो रहा है। उसी समय, मैंने MongoDB Javadocs को देखा । GridFSDBFileएक इनपुट स्ट्रीम है, तो क्यों न केवल इसे जावा-आरएस में पास किया जाए ?
मायकेहो

3
@ डेनिसचूंग हाँ, बिल्कुल। कुछ भी मुफ्त नहीं है, लेकिन यह निश्चित रूप से 15 एमबी की कॉपी से छोटा है। अनुकूलन में थ्रेड पूल का उपयोग करना शामिल होगा बजाय निरंतर धागे / ऑब्जेक्ट निर्माण के साथ जीसी मंथन को कम करने के लिए।
मायकेहो

40

जैसा कि इनपुट और आउटपुट स्ट्रीम बस स्टार्ट और एंड पॉइंट हैं, इसका समाधान बाइट ऐरे में अस्थायी स्टोर डेटा के लिए है। इसलिए आपको इंटरमीडिएट बनाना होगा ByteArrayOutputStream, जिसमें से आप byte[]नए के लिए इनपुट के रूप में उपयोग किया जाता है ByteArrayInputStream

public void doTwoThingsWithStream(InputStream inStream, OutputStream outStream){ 
  //create temporary bayte array output stream
  ByteArrayOutputStream baos = new ByteArrayOutputStream();
  doFirstThing(inStream, baos);
  //create input stream from baos
  InputStream isFromFirstData = new ByteArrayInputStream(baos.toByteArray()); 
  doSecondThing(isFromFirstData, outStream);
}

आशा है ये मदद करेगा।


baos.toByteArray () System.arraycopy के साथ एक प्रति बनाता है। उनका कहना है के लिए @mikeho के लिए धन्यवाद developer.classpath.org/doc/java/io/...
मित्जा Gustin

20

आपको एक मध्यवर्ती वर्ग की आवश्यकता होगी जो बीच-बीच में बफर करेगा। हर बार InputStream.read(byte[]...)कॉल किया जाता है, बफ़रिंग क्लास बाइट सरणी में पास से भरेगी, जिसके अगले हिस्से को पास से पास किया जाएगा OutputStream.write(byte[]...)। चूंकि विखंडू के आकार समान नहीं हो सकते हैं, एडेप्टर वर्ग को एक निश्चित राशि को स्टोर करने की आवश्यकता होगी जब तक कि यह रीड बफर को भरने और / या किसी भी बफर ओवरफ्लो को स्टोर करने में सक्षम न हो।

इस लेख में इस समस्या के लिए कुछ अलग तरीकों का एक अच्छा टूटना है:

http://blog.ostermiller.org/convert-java-outputstream-inputstream


1
धन्यवाद @mckamey, परिपत्र बफ़र्स पर आधारित विधि वास्तव में मैं क्या जरूरत है!
हुई वांग वांग

18
ByteArrayOutputStream buffer = (ByteArrayOutputStream) aOutputStream;
byte[] bytes = buffer.toByteArray();
InputStream inputStream = new ByteArrayInputStream(bytes);

2
आपको इसका उपयोग नहीं करना चाहिए क्योंकि toByteArray()विधि बॉडी इस प्रकार है return Arrays.copyOf(buf, count);जो एक नया एरे देता है।
रूट जी

17

Easystream खुला स्रोत पुस्तकालय एक InputStream के लिए एक OutputStream कन्वर्ट करने के लिए प्रत्यक्ष समर्थन हासिल है: http://io-tools.sourceforge.net/easystream/tutorial/tutorial.html

वे अन्य विकल्पों को भी सूचीबद्ध करते हैं: http://io-tools.sourceforge.net/easystream/OutputStream_to_InputStream.html


1
हाँ!, उपयोग में आसानी!
smartwjw

9

मैं एक ByteArrayOutputStreamको परिवर्तित करने के साथ एक ही समस्या का सामना करना पड़ा ByteArrayInputStreamऔर इसे एक व्युत्पन्न वर्ग का उपयोग करके हल किया, ByteArrayOutputStreamजिसमें से एक को वापस करने में सक्षम है जो ByteArrayInputStreamकि आंतरिक बफर के साथ आरंभिक है ByteArrayOutputStream। इस तरह से कोई अतिरिक्त मेमोरी का उपयोग नहीं किया जाता है और 'रूपांतरण' बहुत तेज़ है:

package info.whitebyte.utils;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;

/**
 * This class extends the ByteArrayOutputStream by 
 * providing a method that returns a new ByteArrayInputStream
 * which uses the internal byte array buffer. This buffer
 * is not copied, so no additional memory is used. After
 * creating the ByteArrayInputStream the instance of the
 * ByteArrayInOutStream can not be used anymore.
 * <p>
 * The ByteArrayInputStream can be retrieved using <code>getInputStream()</code>.
 * @author Nick Russler
 */
public class ByteArrayInOutStream extends ByteArrayOutputStream {
    /**
     * Creates a new ByteArrayInOutStream. The buffer capacity is
     * initially 32 bytes, though its size increases if necessary.
     */
    public ByteArrayInOutStream() {
        super();
    }

    /**
     * Creates a new ByteArrayInOutStream, with a buffer capacity of
     * the specified size, in bytes.
     *
     * @param   size   the initial size.
     * @exception  IllegalArgumentException if size is negative.
     */
    public ByteArrayInOutStream(int size) {
        super(size);
    }

    /**
     * Creates a new ByteArrayInputStream that uses the internal byte array buffer 
     * of this ByteArrayInOutStream instance as its buffer array. The initial value 
     * of pos is set to zero and the initial value of count is the number of bytes 
     * that can be read from the byte array. The buffer array is not copied. This 
     * instance of ByteArrayInOutStream can not be used anymore after calling this
     * method.
     * @return the ByteArrayInputStream instance
     */
    public ByteArrayInputStream getInputStream() {
        // create new ByteArrayInputStream that respects the current count
        ByteArrayInputStream in = new ByteArrayInputStream(this.buf, 0, this.count);

        // set the buffer of the ByteArrayOutputStream 
        // to null so it can't be altered anymore
        this.buf = null;

        return in;
    }
}

मैंने सामान को गीथब पर रखा: https://github.com/nickrussler/ByteArrayInOutStream


क्या होगा अगर सामग्री बफर में फिट नहीं है?
वडिमो

तब आपको पहली बार में एक बाइटएरेइंटरप्यूटस्ट्रीम का उपयोग नहीं करना चाहिए।
निक रसलर

इस समाधान में स्मृति में सभी बाइट्स होंगे। छोटी फाइलों के लिए यह ठीक होगा लेकिन फिर आप ByteArrayOutput स्ट्रीम पर getBytes () का भी उपयोग कर सकते हैं
Vadimo

1
अगर आपको लगता है कि BBteteArray का मतलब यह है कि आंतरिक बफ़र को कॉपी किया जाएगा, जो कि मेरे दृष्टिकोण से दोगुनी मेमोरी लेगा। संपादित करें: आह मैं समझता हूं, छोटी फाइलों के लिए यह निश्चित रूप से काम करता है ..
निक रसलर

समय की बर्बादी। ByteArrayOutputStream के पास किसी अन्य आउटपुट स्ट्रीम में सामग्री स्थानांतरित करने के लिए एक राइटो विधि है
टोनी बेनब्राहिम

3

पुस्तकालय io-extras उपयोगी हो सकता है। उदाहरण के लिए यदि आप एक InputStreamका उपयोग कर gzip करना चाहते हैं GZIPOutputStreamऔर आप चाहते हैं कि यह तुल्यकालिक रूप से हो (डिफ़ॉल्ट बफर आकार 8192 का उपयोग करके):

InputStream is = ...
InputStream gz = IOUtil.pipe(is, o -> new GZIPOutputStream(o));

ध्यान दें कि लाइब्रेरी में 100% यूनिट टेस्ट कवरेज है (जो इसके लायक है!) और मावेन सेंट्रल पर है। मावेन निर्भरता है:

<dependency>
  <groupId>com.github.davidmoten</groupId>
  <artifactId>io-extras</artifactId>
  <version>0.1</version>
</dependency>

बाद के संस्करण के लिए जाँच करना सुनिश्चित करें।


0

मेरे दृष्टिकोण से, java.io.PipedInputStream / java.io.PipedOutputStream विचार करने के लिए सबसे अच्छा विकल्प है। कुछ स्थितियों में आप ByteArrayInputStream / ByteArrayOutputStream का उपयोग करना चाह सकते हैं। समस्या यह है कि आपको बाइट की नकल करने के लिए बाइट डुप्लिकेट करने की आवश्यकता है एक बाइटऑरेप्यूटस्ट्रीम को बाइट के लिए एप्रेटइन्पुटस्ट्रीम में। इसके अलावा ByteArrayOutpuStream / ByteArrayInputStream 2GB तक सीमित हैं। यहाँ एक OutpuStream / InputStream कार्यान्वयन है, जिसे मैंने ByteArrayOutputStream / ByteArrayInputStream की सीमाओं (Scala कोड, लेकिन जावा डेवलपरों के लिए आसानी से समझा जा सकता है) को बायपास करने के लिए लिखा था:

import java.io.{IOException, InputStream, OutputStream}

import scala.annotation.tailrec

/** Acts as a replacement for ByteArrayOutputStream
  *
  */
class HugeMemoryOutputStream(capacity: Long) extends OutputStream {
  private val PAGE_SIZE: Int = 1024000
  private val ALLOC_STEP: Int = 1024

  /** Pages array
    *
    */
  private var streamBuffers: Array[Array[Byte]] = Array.empty[Array[Byte]]

  /** Allocated pages count
    *
    */
  private var pageCount: Int = 0

  /** Allocated bytes count
    *
    */
  private var allocatedBytes: Long = 0

  /** Current position in stream
    *
    */
  private var position: Long = 0

  /** Stream length
    *
    */
  private var length: Long = 0

  allocSpaceIfNeeded(capacity)

  /** Gets page count based on given length
    *
    * @param length   Buffer length
    * @return         Page count to hold the specified amount of data
    */
  private def getPageCount(length: Long) = {
    var pageCount = (length / PAGE_SIZE).toInt + 1

    if ((length % PAGE_SIZE) == 0) {
      pageCount -= 1
    }

    pageCount
  }

  /** Extends pages array
    *
    */
  private def extendPages(): Unit = {
    if (streamBuffers.isEmpty) {
      streamBuffers = new Array[Array[Byte]](ALLOC_STEP)
    }
    else {
      val newStreamBuffers = new Array[Array[Byte]](streamBuffers.length + ALLOC_STEP)
      Array.copy(streamBuffers, 0, newStreamBuffers, 0, streamBuffers.length)
      streamBuffers = newStreamBuffers
    }

    pageCount = streamBuffers.length
  }

  /** Ensures buffers are bug enough to hold specified amount of data
    *
    * @param value  Amount of data
    */
  private def allocSpaceIfNeeded(value: Long): Unit = {
    @tailrec
    def allocSpaceIfNeededIter(value: Long): Unit = {
      val currentPageCount = getPageCount(allocatedBytes)
      val neededPageCount = getPageCount(value)

      if (currentPageCount < neededPageCount) {
        if (currentPageCount == pageCount) extendPages()

        streamBuffers(currentPageCount) = new Array[Byte](PAGE_SIZE)
        allocatedBytes = (currentPageCount + 1).toLong * PAGE_SIZE

        allocSpaceIfNeededIter(value)
      }
    }

    if (value < 0) throw new Error("AllocSpaceIfNeeded < 0")
    if (value > 0) {
      allocSpaceIfNeededIter(value)

      length = Math.max(value, length)
      if (position > length) position = length
    }
  }

  /**
    * Writes the specified byte to this output stream. The general
    * contract for <code>write</code> is that one byte is written
    * to the output stream. The byte to be written is the eight
    * low-order bits of the argument <code>b</code>. The 24
    * high-order bits of <code>b</code> are ignored.
    * <p>
    * Subclasses of <code>OutputStream</code> must provide an
    * implementation for this method.
    *
    * @param      b the <code>byte</code>.
    */
  @throws[IOException]
  override def write(b: Int): Unit = {
    val buffer: Array[Byte] = new Array[Byte](1)

    buffer(0) = b.toByte

    write(buffer)
  }

  /**
    * Writes <code>len</code> bytes from the specified byte array
    * starting at offset <code>off</code> to this output stream.
    * The general contract for <code>write(b, off, len)</code> is that
    * some of the bytes in the array <code>b</code> are written to the
    * output stream in order; element <code>b[off]</code> is the first
    * byte written and <code>b[off+len-1]</code> is the last byte written
    * by this operation.
    * <p>
    * The <code>write</code> method of <code>OutputStream</code> calls
    * the write method of one argument on each of the bytes to be
    * written out. Subclasses are encouraged to override this method and
    * provide a more efficient implementation.
    * <p>
    * If <code>b</code> is <code>null</code>, a
    * <code>NullPointerException</code> is thrown.
    * <p>
    * If <code>off</code> is negative, or <code>len</code> is negative, or
    * <code>off+len</code> is greater than the length of the array
    * <code>b</code>, then an <tt>IndexOutOfBoundsException</tt> is thrown.
    *
    * @param      b   the data.
    * @param      off the start offset in the data.
    * @param      len the number of bytes to write.
    */
  @throws[IOException]
  override def write(b: Array[Byte], off: Int, len: Int): Unit = {
    @tailrec
    def writeIter(b: Array[Byte], off: Int, len: Int): Unit = {
      val currentPage: Int = (position / PAGE_SIZE).toInt
      val currentOffset: Int = (position % PAGE_SIZE).toInt

      if (len != 0) {
        val currentLength: Int = Math.min(PAGE_SIZE - currentOffset, len)
        Array.copy(b, off, streamBuffers(currentPage), currentOffset, currentLength)

        position += currentLength

        writeIter(b, off + currentLength, len - currentLength)
      }
    }

    allocSpaceIfNeeded(position + len)
    writeIter(b, off, len)
  }

  /** Gets an InputStream that points to HugeMemoryOutputStream buffer
    *
    * @return InputStream
    */
  def asInputStream(): InputStream = {
    new HugeMemoryInputStream(streamBuffers, length)
  }

  private class HugeMemoryInputStream(streamBuffers: Array[Array[Byte]], val length: Long) extends InputStream {
    /** Current position in stream
      *
      */
    private var position: Long = 0

    /**
      * Reads the next byte of data from the input stream. The value byte is
      * returned as an <code>int</code> in the range <code>0</code> to
      * <code>255</code>. If no byte is available because the end of the stream
      * has been reached, the value <code>-1</code> is returned. This method
      * blocks until input data is available, the end of the stream is detected,
      * or an exception is thrown.
      *
      * <p> A subclass must provide an implementation of this method.
      *
      * @return the next byte of data, or <code>-1</code> if the end of the
      *         stream is reached.
      */
    @throws[IOException]
    def read: Int = {
      val buffer: Array[Byte] = new Array[Byte](1)

      if (read(buffer) == 0) throw new Error("End of stream")
      else buffer(0)
    }

    /**
      * Reads up to <code>len</code> bytes of data from the input stream into
      * an array of bytes.  An attempt is made to read as many as
      * <code>len</code> bytes, but a smaller number may be read.
      * The number of bytes actually read is returned as an integer.
      *
      * <p> This method blocks until input data is available, end of file is
      * detected, or an exception is thrown.
      *
      * <p> If <code>len</code> is zero, then no bytes are read and
      * <code>0</code> is returned; otherwise, there is an attempt to read at
      * least one byte. If no byte is available because the stream is at end of
      * file, the value <code>-1</code> is returned; otherwise, at least one
      * byte is read and stored into <code>b</code>.
      *
      * <p> The first byte read is stored into element <code>b[off]</code>, the
      * next one into <code>b[off+1]</code>, and so on. The number of bytes read
      * is, at most, equal to <code>len</code>. Let <i>k</i> be the number of
      * bytes actually read; these bytes will be stored in elements
      * <code>b[off]</code> through <code>b[off+</code><i>k</i><code>-1]</code>,
      * leaving elements <code>b[off+</code><i>k</i><code>]</code> through
      * <code>b[off+len-1]</code> unaffected.
      *
      * <p> In every case, elements <code>b[0]</code> through
      * <code>b[off]</code> and elements <code>b[off+len]</code> through
      * <code>b[b.length-1]</code> are unaffected.
      *
      * <p> The <code>read(b,</code> <code>off,</code> <code>len)</code> method
      * for class <code>InputStream</code> simply calls the method
      * <code>read()</code> repeatedly. If the first such call results in an
      * <code>IOException</code>, that exception is returned from the call to
      * the <code>read(b,</code> <code>off,</code> <code>len)</code> method.  If
      * any subsequent call to <code>read()</code> results in a
      * <code>IOException</code>, the exception is caught and treated as if it
      * were end of file; the bytes read up to that point are stored into
      * <code>b</code> and the number of bytes read before the exception
      * occurred is returned. The default implementation of this method blocks
      * until the requested amount of input data <code>len</code> has been read,
      * end of file is detected, or an exception is thrown. Subclasses are encouraged
      * to provide a more efficient implementation of this method.
      *
      * @param      b   the buffer into which the data is read.
      * @param      off the start offset in array <code>b</code>
      *                 at which the data is written.
      * @param      len the maximum number of bytes to read.
      * @return the total number of bytes read into the buffer, or
      *         <code>-1</code> if there is no more data because the end of
      *         the stream has been reached.
      * @see java.io.InputStream#read()
      */
    @throws[IOException]
    override def read(b: Array[Byte], off: Int, len: Int): Int = {
      @tailrec
      def readIter(acc: Int, b: Array[Byte], off: Int, len: Int): Int = {
        val currentPage: Int = (position / PAGE_SIZE).toInt
        val currentOffset: Int = (position % PAGE_SIZE).toInt

        val count: Int = Math.min(len, length - position).toInt

        if (count == 0 || position >= length) acc
        else {
          val currentLength = Math.min(PAGE_SIZE - currentOffset, count)
          Array.copy(streamBuffers(currentPage), currentOffset, b, off, currentLength)

          position += currentLength

          readIter(acc + currentLength, b, off + currentLength, len - currentLength)
        }
      }

      readIter(0, b, off, len)
    }

    /**
      * Skips over and discards <code>n</code> bytes of data from this input
      * stream. The <code>skip</code> method may, for a variety of reasons, end
      * up skipping over some smaller number of bytes, possibly <code>0</code>.
      * This may result from any of a number of conditions; reaching end of file
      * before <code>n</code> bytes have been skipped is only one possibility.
      * The actual number of bytes skipped is returned. If <code>n</code> is
      * negative, the <code>skip</code> method for class <code>InputStream</code> always
      * returns 0, and no bytes are skipped. Subclasses may handle the negative
      * value differently.
      *
      * The <code>skip</code> method of this class creates a
      * byte array and then repeatedly reads into it until <code>n</code> bytes
      * have been read or the end of the stream has been reached. Subclasses are
      * encouraged to provide a more efficient implementation of this method.
      * For instance, the implementation may depend on the ability to seek.
      *
      * @param      n the number of bytes to be skipped.
      * @return the actual number of bytes skipped.
      */
    @throws[IOException]
    override def skip(n: Long): Long = {
      if (n < 0) 0
      else {
        position = Math.min(position + n, length)
        length - position
      }
    }
  }
}

उपयोग करने में आसान, कोई बफर दोहराव नहीं, कोई 2GB मेमोरी सीमा नहीं

val out: HugeMemoryOutputStream = new HugeMemoryOutputStream(initialCapacity /*may be 0*/)

out.write(...)
...

val in1: InputStream = out.asInputStream()

in1.read(...)
...

val in2: InputStream = out.asInputStream()

in2.read(...)
...

-1

यदि आप एक InputStream से OutputStream बनाना चाहते हैं तो एक बुनियादी समस्या है। जब तक यह किया जाता है तब तक OutputStream ब्लॉक करने के लिए लिखने का एक तरीका। इसलिए लेखन विधि समाप्त होने पर परिणाम उपलब्ध होता है। इसके 2 परिणाम हैं:

  1. यदि आप केवल एक धागे का उपयोग करते हैं, तो आपको सब कुछ लिखे जाने तक प्रतीक्षा करने की आवश्यकता है (इसलिए आपको स्ट्रीम के डेटा को मेमोरी या डिस्क में संग्रहीत करने की आवश्यकता है)।
  2. यदि आप डेटा को पूरा होने से पहले एक्सेस करना चाहते हैं, तो आपको दूसरे थ्रेड की आवश्यकता है।

वेरिएंट 1 को बाइट सरणियों या दायर का उपयोग करके लागू किया जा सकता है। वेरिएंट 1 को पिल्लों का उपयोग करके लागू किया जा सकता है (या तो सीधे या अतिरिक्त अमूर्त के साथ - जैसे रिंगबफ़र या अन्य टिप्पणी से Google लीब)।

वास्तव में मानक जावा के साथ समस्या को हल करने का कोई अन्य तरीका नहीं है। प्रत्येक समाधान इनमें से किसी एक का कार्यान्वयन है।

एक अवधारणा है जिसे "निरंतरता" कहा जाता है ( विवरण के लिए विकिपीडिया देखें)। इस मामले में मूल रूप से इसका मतलब है:

  • एक विशेष आउटपुट स्ट्रीम है जो डेटा की एक निश्चित मात्रा की अपेक्षा करता है
  • यदि अम्मांट पहुँच जाता है, तो धारा उसके समकक्ष को नियंत्रण देती है जो एक विशेष इनपुट स्ट्रीम है
  • इनपुट स्ट्रीम डेटा की मात्रा को तब तक उपलब्ध कराती है जब तक उसे पढ़ा नहीं जाता है, उसके बाद, वह आउटपुट स्ट्रीम पर नियंत्रण वापस कर देता है

जबकि कुछ भाषाओं में यह अवधारणा है, जावा के लिए आपको कुछ "जादू" की आवश्यकता है। उदाहरण के लिए जावा के लिए अपाचे औजार से "कॉमन्स-जावफ्लो"। नुकसान यह है कि इसके निर्माण के समय कुछ विशेष बायोटेक संशोधनों की आवश्यकता होती है। तो यह एक अतिरिक्त पुस्तकालय whith कस्टम बिल्ड स्क्रिप्ट में सभी सामान डाल करने के लिए समझ में आता है।


-1

पुरानी पोस्ट लेकिन दूसरों की मदद कर सकते हैं, इस तरह से उपयोग करें:

OutputStream out = new ByteArrayOutputStream();
...
out.write();
...
ObjectInputStream ois = new ObjectInputStream(new ByteArrayInputStream(out.toString().getBytes()));

1
स्ट्रिंग -> आकार की समस्या
user1594895

इसके अलावा, toString().getBytes()एक धारा पर कॉल करना * धारा की सामग्री को वापस नहीं करेगा।
मार्टन बॉड्यूज 23

-1

हालाँकि आप एक OutputStream को InputStream में परिवर्तित नहीं कर सकते हैं, java PipedOutputStream और PipedInputStream का उपयोग करके एक तरीका प्रदान करता है जो आपके पास एक PipedOutputStream से संबंधित डेटा हो सकता है जो एक संबंधित PipetInputStream के माध्यम से उपलब्ध हो सकता है।
कुछ समय पहले मुझे इसी तरह की स्थिति का सामना करना पड़ा था जब तीसरे पक्ष के पुस्तकालयों के साथ काम करना था जिसके लिए एक आउटपुटस्ट्रीम उदाहरण के बजाय एक इनपुटस्ट्रीम उदाहरण की आवश्यकता थी।
जिस तरह से मैंने इस मुद्दे को तय किया वह PipedInputStream और PipedOutputStream का उपयोग करना है।
वैसे वे उपयोग करने के लिए मुश्किल हैं और आप जो चाहते हैं उसे प्राप्त करने के लिए मल्टीथ्रेडिंग का उपयोग करना चाहिए। मैंने हाल ही में जीथब पर एक कार्यान्वयन प्रकाशित किया जिसका आप उपयोग कर सकते हैं।
यहाँ लिंक है । आप विकी के माध्यम से समझ सकते हैं कि इसका उपयोग कैसे किया जाए।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.