一、快讀-BufferedReader實(shí)現(xiàn)?
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了劍河免費(fèi)建站歡迎大家使用!為了方便,自己寫了個(gè)類
注意:BufferedReader需要拋異常(throws IOException)
class in
{
static BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
static StringTokenizer tokenizer = new StringTokenizer("");
// nextLine()讀取字符串
static String nextLine() throws IOException { return reader.readLine(); }
// next()讀取字符串
static String next() throws IOException
{
while (!tokenizer.hasMoreTokens()) tokenizer = new StringTokenizer(reader.readLine());
return tokenizer.nextToken();
}
// 讀取一個(gè)int型數(shù)值
static int nextInt() throws IOException { return Integer.parseInt(next()); }
// 讀取一個(gè)double型數(shù)值
static double nextDouble() throws IOException { return Double.parseDouble(next()); }
// 讀取一個(gè)long型數(shù)值
static long nextLong() throws IOException { return Long.parseLong(next());}
// 讀取一個(gè)BigInteger
static BigInteger nextBigInteger() throws IOException
{
BigInteger d = new BigInteger(in.nextLine());
return d;
}
}
二、快寫-PrintWriter實(shí)現(xiàn)
注意:
1、PrintWriter也需要拋異常(throws IOException)
2、需要手動(dòng)刷洗緩存區(qū),要不然不輸出(pw.flush();)
三、實(shí)操代碼
package hly;
import java.io.*;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.Arrays;
import java.util.HashMap;
import java.util.StringTokenizer;
class in
{
static BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
static StringTokenizer tokenizer = new StringTokenizer("");
// nextLine()讀取字符串
static String nextLine() throws IOException { return reader.readLine(); }
// next()讀取字符串
static String next() throws IOException
{
while (!tokenizer.hasMoreTokens()) tokenizer = new StringTokenizer(reader.readLine());
return tokenizer.nextToken();
}
// 讀取一個(gè)int型數(shù)值
static int nextInt() throws IOException { return Integer.parseInt(next()); }
// 讀取一個(gè)double型數(shù)值
static double nextDouble() throws IOException { return Double.parseDouble(next()); }
// 讀取一個(gè)long型數(shù)值
static long nextLong() throws IOException { return Long.parseLong(next());}
// 讀取一個(gè)BigInteger
static BigInteger nextBigInteger() throws IOException
{
BigInteger d = new BigInteger(in.nextLine());
return d;
}
}
public class Main
{
public static void main(String[] args) throws IOException
{
PrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));
// 讀入int
int a = in.nextInt();
pw.println(a);
// 讀入long
long b = in.nextLong();
pw.println(b);
// 讀入double
double c = in.nextDouble();
pw.println(c);
// 讀入字符串
// nextLine方式輸入的字符串可以含有空格(空格字符也會存儲在字符串里面),也就是說它是以回車作為輸入的結(jié)束符。
String s1 = in.nextLine();
pw.println(s1);
// 讀入字符串
// next輸入的字符串不能含有空格,它以空格、tab、回車作為輸入的結(jié)束符。
String s2 = in.next();
pw.println(s2);
// 讀入BigInteger
BigInteger d = in.nextBigInteger();
pw.append("" + d);
pw.flush();
}
}
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動(dòng)首月15元起,快前往官網(wǎng)查看詳情吧
文章題目:Java-快讀快寫-創(chuàng)新互聯(lián)
文章位置:http://jinyejixie.com/article16/depigg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、自適應(yīng)網(wǎng)站、商城網(wǎng)站、做網(wǎng)站、外貿(mào)建站、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容