代码搜索:InputStream
找到约 5,812 项符合「InputStream」的源代码
代码结果 5,812
www.eeworm.com/read/100433/6269651
java smppio.java
/*
* Java SMPP API
* Copyright (C) 1998 - 2001 by Oran Kelly
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* Lic
www.eeworm.com/read/492058/6423607
cpp textreader.cpp
/*
Copyright (c) 2008 TrueCrypt Foundation. All rights reserved.
Governed by the TrueCrypt License 2.6 the full text of which is contained
in the file License.txt included in TrueCrypt binary
www.eeworm.com/read/490324/6454559
java lineinputstream.java
package chess;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
public class LineInputStream {
private InputStream in;
public LineInputStream
www.eeworm.com/read/485187/6566899
pas dxcoders.pas
unit DXCoders;
interface
///////////////////////////////////////////////////////////////////////////////
// Component: TDXCodeProcessor
// Author: G.E. Ozz Nixon Jr. (onixon@dxsock.co
www.eeworm.com/read/409828/11310860
java huffdecoder.java
/****************************
HuffDecoder class
used to decoded a Huffman encoded Bitstream
****************************/
package huffmancoding;
import java.io.*;
import java.util.Arrays;
impo
www.eeworm.com/read/405286/11466836
java rot13cryptinputstream.java
//file: rot13CryptInputStream.java
package learningjava.protocolhandlers.crypt;
import java.io.*;
abstract class CryptInputStream extends InputStream {
InputStream in;
OutputStream out;
a
www.eeworm.com/read/261820/11622554
java server.java
import java.net.*;
import java.io.*;
import java.util.*;
public class Server {
public static void main(String[] args) throws Exception{
ServerSocket ss = new ServerSocket(6689);
www.eeworm.com/read/343057/11979984
java simpleio.java
import java.io.*;
public class SimpleIO {
InputStream is;
public SimpleIO(InputStream is) {
this.is = is;
}
public String readString() {
byte[] buff = new byte[128];
int n=0;
try