代码搜索:readline
找到约 2,619 项符合「readline」的源代码
代码结果 2,619
www.eeworm.com/read/287750/8672856
java fileop.java
// 从a.txt中读入一个整数和一个字符串 并输出到文件b.txt
import java.io.*;
public class FileOp
{
public static void main (String [] args) throws IOException
{
// 文件输入
String st;
int a;
FileReader
www.eeworm.com/read/387203/8699835
java student.java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Students;
import java.io.*;
/**
*
* @author liuwei
*/
public class student {
String
www.eeworm.com/read/430914/8719293
java server.java
import java.io.*;
import java.net.*;
import java.sql.*;
import java.util.Vector;
class ServerThread extends Thread{//继承线程
private Socket socket;//定义套接口
private BufferedReader in;//定义输入流
private
www.eeworm.com/read/286573/8758278
java student.java
import java.io.*;
class Stu{
String name;
String number;
static int stunum=0;
}
class W{
void input(Stu st[])
throws IOException
www.eeworm.com/read/286388/8767040
java bufferedreader.java
import java.io.*;
class bufferedreader
{
public static void main(String args[]) throws Exception
{
FileReader filereader = new FileReader("file.txt");
BufferedReader
www.eeworm.com/read/385978/8774247
vbs fso.vbs
'替换文本字符,每行第一个是c的话替换成!
'文件名设置
filename="1.txt"
'-----------------------------------
Dim fso,f,strs(),count,i
Set fso = CreateObject("Scripting.FileSystemObject")
'读取文件行数
Set f=fso.OpenTextFi
www.eeworm.com/read/385935/8776878
java file20.java
import java.io.*;
public class file20
///创建一个多字节输入流对象isr
///创建一个带缓冲的输入流对象br
///义勇br的方法读输出
{
public static void main(String[] args)throws Exception
{
InputStreamReader isr=new
www.eeworm.com/read/385935/8776905
java file15.java
import java.io.*;
///创建一个文件类对象f
///创建一个输入流对象fis,并且以f作为参数
/创建一个字符输入流对象isr,并且以fis作为参数
///创建一个带缓冲的输入流对象,利用此对象读取一行数据
public class file15
{
public static void main(String[] args)throws Exception
www.eeworm.com/read/385935/8776941
java file14.java
import java.io.*;
///创建一个文件类对象f
///创建一个输入流对象fis,并且以f作为参数
///创建一个字符输入流对象isr,并且以fis作为参数
///创建一个带缓冲的输入流对象,利用此对象读取一行数据
public class file14
{
public static void main(String[] args)throws Excepti
www.eeworm.com/read/429834/8787158
h readfile.h
#ifndef READFILE_H
#define READFILE_H 1
void readline();
int readchar();
#endif