代码搜索:BufferedReader
找到约 6,329 项符合「BufferedReader」的源代码
代码结果 6,329
www.eeworm.com/read/123850/14609437
txt stream tokenizing(分解字符串).txt
作者:blackwhites
日期:2000-10-23 16:59:32
从sun网站看到的Stream Tokenizing
In Tech Tips: June 23, 1998, an example of string tokenization was presented, using the class java.util.StringTokenizer.
There's
www.eeworm.com/read/104413/15694746
txt stream tokenizing(分解字符串).txt
作者:blackwhites
日期:2000-10-23 16:59:32
从sun网站看到的Stream Tokenizing
In Tech Tips: June 23, 1998, an example of string tokenization was presented, using the class java.util.StringTokenizer.
There's
www.eeworm.com/read/130187/5963291
java streamgobbler.java
/**
* This file is part of the jcrontab package
* Copyright (C) 2001-2003 Israel Olalla
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GN
www.eeworm.com/read/154598/5635938
java streamgobbler.java
/**
* This file is part of the jcrontab package
* Copyright (C) 2001-2003 Israel Olalla
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GN
www.eeworm.com/read/444455/7612524
java tcpclient.java
import java.util.*;
import java.io.*;
import java.net.*;
public class TCPClient {
public static void main (String args[]) throws Exception {
// throws Exception here because don't want to
www.eeworm.com/read/144899/12763774
java goldbach.java
import java.io.*;
public class Goldbach
{
public static int prime(int p) //判断数p是否为质数,是则返回1,不是则返回0
{
int p1=(int)p/2;
int r=1;
for(int i=2;i
www.eeworm.com/read/151784/5678913
java factquoter.java
/*
* Copyright (c) 2000 David Flanagan. All rights reserved.
* This code is from the book Java Examples in a Nutshell, 2nd Edition.
* It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or
www.eeworm.com/read/151775/5679094
java factquoter.java
/*
* Copyright (c) 2000 David Flanagan. All rights reserved.
* This code is from the book Java Examples in a Nutshell, 2nd Edition.
* It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or
www.eeworm.com/read/151092/5686600
java loginserver.java
// LoginServer.java
// LoginServer uses an SSLServerSocket to demonstrate JSSE's
// SSL implementation.
package com.deitel.advjhtp1.security.jsse;
// Java core packages
import java.io.*;
//
www.eeworm.com/read/131180/5947559
java factquoter.java
/*
* Copyright (c) 2000 David Flanagan. All rights reserved.
* This code is from the book Java Examples in a Nutshell, 2nd Edition.
* It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or