代码搜索:InputStream
找到约 5,812 项符合「InputStream」的源代码
代码结果 5,812
www.eeworm.com/read/411034/11259006
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/147926/12511461
java countspace.java
import java.io.*; //计算文件中的字符数和空白字符数
class CountSpace {
public static void main(String[] args) throws IOException {
InputStream in;
if (args.length == 0) {
in = System.in;
}
else {
www.eeworm.com/read/147311/12566856
html disctype.html
Determining the Format of an Image in a File
(Java Developers Almanac Example)
www.eeworm.com/read/202935/15369473
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
www.eeworm.com/read/113018/15472839
java stockstorage.java
import java.io.DataOutputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
import java.io.EOFException
www.eeworm.com/read/110418/15534486
java cipherinputstream.java
/*
Christoforos Pirillos @ Villanova University - May 1999
based on code from the book "Java Network Programming" by Hughes
*/
package encryption;
import java.io.*;
/**This is the corresponding clas
www.eeworm.com/read/110418/15534495
java hashinputstream.java
/*
Christoforos Pirillos @ Villanova University - May 1999
based on code from the book "Java Network Programming" by Hughes
*/
package encryption;
import java.io.*;
/**This class provides the corres
www.eeworm.com/read/106401/15637654
java bytearraydatasource.java
/*
* @(#)ByteArrayDataSource.java 1.1 00/01/30
*
* Copyright 1998-2000 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the proprietary information of Sun Microsystems, Inc.
www.eeworm.com/read/101195/15841869
java stockstorage.java
import java.io.DataOutputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
import java.io.EOFException