网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

Java-快读快写-创新互联

一、快读-BufferedReader实现 

网站建设哪家好,找成都创新互联公司!专注于网页设计、网站建设、微信开发、微信小程序、集团企业网站建设等服务项目。为回馈新老客户创新互联还提供了剑河免费建站欢迎大家使用!

为了方便,自己写了个类

注意: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();
    }

    // 读取一个int型数值
    static int nextInt() throws IOException  { return Integer.parseInt(next()); }

    // 读取一个double型数值
    static double nextDouble() throws IOException { return Double.parseDouble(next()); }
    
    // 读取一个long型数值
    static long nextLong() throws IOException  { return Long.parseLong(next());}
    
    // 读取一个BigInteger
    static BigInteger nextBigInteger() throws IOException 
    { 
        BigInteger d = new BigInteger(in.nextLine());
        return d;
    }
}

二、快写-PrintWriter实现

注意:

1、PrintWriter也需要抛异常(throws IOException)

2、需要手动刷洗缓存区,要不然不输出(pw.flush();)

三、实操代码

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();
    }

    // 读取一个int型数值
    static int nextInt() throws IOException  { return Integer.parseInt(next()); }

    // 读取一个double型数值
    static double nextDouble() throws IOException { return Double.parseDouble(next()); }
    
    // 读取一个long型数值
    static long nextLong() throws IOException  { return Long.parseLong(next());}
    
    // 读取一个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方式输入的字符串可以含有空格(空格字符也会存储在字符串里面),也就是说它是以回车作为输入的结束符。
        String s1 = in.nextLine();
        pw.println(s1);
        
        // 读入字符串
        // next输入的字符串不能含有空格,它以空格、tab、回车作为输入的结束符。
        String s2 = in.next();
        pw.println(s2);
        
        // 读入BigInteger
        BigInteger d = in.nextBigInteger();
        pw.append("" + d);
        
        pw.flush();
    }
}

你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧


分享题目:Java-快读快写-创新互联
标题路径:http://bjjierui.cn/article/depigg.html

其他资讯