代码搜索:InputStream
找到约 5,812 项符合「InputStream」的源代码
代码结果 5,812
www.eeworm.com/read/178627/9390202
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/176783/9484253
java javalayerutils.java
/*
* 12/12/99 Initial version. mdm@techie.com
/*-----------------------------------------------------------------------
* This program is free software; you can redistribute it and/or modify
www.eeworm.com/read/175878/9528131
java sequencetester.java
import java.io.*;
public class SequenceTester{
public static void main(String [] args)throws IOException{
InputStream s1=new ByteArrayInputStream("您".getBytes());
InputStream s2=new ByteArray
www.eeworm.com/read/175308/9552719
ex-21-12
// Example 21-12: Implementing an asynchronous network file server
using System;
using System.Net.Sockets;
using System.Text;
using System.IO;
// get a file name from the client
// open the
www.eeworm.com/read/175308/9552731
ex-21-07
// Example 21-07: Implementing asynchronous I/O
namespace Programming_CSharp
{
using System;
using System.IO;
using System.Threading;
using System.Text;
public class AsynchI
www.eeworm.com/read/363661/9940770
java xmlreader.java
/*
****************************************************************************************
* Copyright ? Giovanni Novelli
* All Rights Reserved.
**********************************************
www.eeworm.com/read/358127/10195776
java iaudioplayer.java
/*
* IAudioPlayer.java
*
* Created on 2007年3月19日, 上午1:47
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package audio;
impor
www.eeworm.com/read/356013/10239287
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/423867/10528826
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