Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
291 views

Clojure loop reads one extra

When length is 4 following loop executes 5 times. Reading 5 characters from the stream. (loop [i (.read stream) result "" counter length] (let [c (char i)] (println "=>" c) (if ...
2
votes
4answers
234 views

Better data stream reading in Haskell

I am trying to parse an input stream where the first line tells me how many lines of data there are. I'm ending up with the following code, and it works, but I think there is a better way. Is there? ...
1
vote
1answer
247 views

Clojure function reading from stream locks

I have a function that reads one token from an input stream that is called (get-next-indicator stream indicator) and returns it. I am trying to use it to construct a map. But, when I run it, it ...
1
vote
5answers
912 views

SHA-1 Hashes Mixed with Strings

I have to parse something like the following "some text <40 byte hash>" can i read this whole thing in to a string without corrupting 40 byte hash part? The thing is hash is not going to be there ...
0
votes
2answers
1k views

how to read using InputStreamReader without blocking

Is there a simple way to turn the standard code: in = new InputStreamReader(socket.getInputStream()); String message = ""; while ((size = in.read(buf)) != -1){ message += new String(buf, 0, ...