Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

java的输入输出 #2

Open
Ogurimuio opened this issue May 19, 2018 · 0 comments
Open

java的输入输出 #2

Ogurimuio opened this issue May 19, 2018 · 0 comments
Assignees
Labels
Java something about Java

Comments

@Ogurimuio
Copy link
Owner

#java的输入输出

一、从命令行输入输出数据

1.向控制台输出数据

标准输出流(System.out)中为人们提供了3种输出方法:

​ **1)print(输出项):**实现不换行输出。输出项可以是变量名、常量、表达

​ **2)println(输出项):**输出数据后换行。输出项可以是变量名、常量、表达式。

​ **3)printf("格式控制部分”,表达式1,表达式2,....表达式n):**格式控制部分由“格式控制符”+“普通字符组成”。。。普通字符原样输出;

常用的格式控制符有:      %d(代表十进制数)、%c(代表一个字符)、%f(代表浮点数)、%e(代表科学计数法的浮点数)、%s(代表字符串)、%n(代表换行符)   

输出时也可以控制数据的宽度:

​ %md:输出的int型数组占m列        

​ %m.nf:输出的浮点型数组占m列,小数点部分保留n位           

​ %.nf:输出的浮点型数据小数部分保留n位

关于%e举例

System.out.printf("%e",1500.34); 

##二、从控制台输入数据

####1.使用Scanner类---------java.util.Scanner类 。

构造Scanner类对象,它附属于标准输入流System.in 

import java.util.*; 

 Scanner input = new Scanner(System.in);    

常用的**next()**方法系列: nextInt():输入整数    nextLine():输入字符串     nextDouble():输入双精度数     next():输入字符串(以空格作为分隔符)

举例:

	 import java.util.*;  
	 
public class DEMO_1 {   
    public static void main(String[] args){  
        Scanner sb = new Scanner(System.in);  
        System.out.print("输入你的姓名:");  
        String name = sb.nextLine();  
        System.out.print("输入你的年龄:");  
        int age = sb.nextInt();  
        System.out.println("姓名:" + name + "  年龄:" + age );  
        sb.close();         //若没有关闭Scanner对象将会出现警告 
    }  
}  

输入一个char型字符

1.先创建一个Scanner对象

2.调用Scanner对象的**next()**方法获取控制台输入,返回的是一个String类型,因为没有类似的nextChar()方法

3.调用String的**charAt(0)**方法获取第一个字符

举例

Scanner input = new Scanner(System.in);
String s = input.next();
char c = s.charAt(0);

####2.BufferedReader类

所属类库:

java.lang.Object    java.io.Reader java.io.BufferedReader

BufferedReader buf =new BufferedReader( new InputStreamReader(System.in));

举例

import java.io.*; 
class BufferedReaderDemo{ 
    public static void main(String[] args)throws IOException {
         BufferedReader buf =new BufferedReader( new InputStreamReader(System.in));
         System.out.print("请输入一系列文字,可包括空格:"); 
         String text =buf.readLine(); 
//这里的readLine有可能会抛出IOException,需要handle
//解决:将这句话包含在try里,再catch一下
//或者在函数那里加throws IOException
         System.out.println("请输入文字:"+text);
     } 
}``` 

*注解:* 
/*- throws IOException 抛出异常 
- InputStreamReader 是字节流通向字符流的桥梁 ******* ####
InputStreamReader类 InputStreamReader 将字节流转换为字符流是字节流通向字符流的桥梁如果不指定字符集编码该解码过程将使用平台默认的字符编码GBK。 **构造方法 :** 

3.InputStreamReader类

举例

int read(char []cbuf);    
//读取单个字符
//将读取到的字符存到数组中。返回读取的字符数。

import java.io.*;
    class InputStreamReaderDemo { 
        public static void transReadNoBuf() throws IOException { 
        /** * 没有缓冲区,只能使用read()方法。 */ 
        //读取字节流 
        //InputStream in = System.in;
        //读取键盘的输入。 
        InputStream in = new FileInputStream("D:\\demo.txt");
        //读取文件的数据。 
        //将字节流向字符流的转换。要启用从字节到字符的有效转换, 
        //可以提前从底层流读取更多的字节. 
        InputStreamReader isr = new InputStreamReader(in);
        //读取 
        //综合到一句。 
        //InputStreamReader isr = new InputStreamReader( 
        //new FileInputStream("D:\\demo.txt"));
         char []cha = new char[1024]; 
        int len = isr.read(cha);
        System.out.println(new String(cha,0,len)); 
        isr.close();
 }
@Ogurimuio Ogurimuio added the Java something about Java label May 19, 2018
@Ogurimuio Ogurimuio self-assigned this May 19, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Java something about Java
Projects
None yet
Development

No branches or pull requests

1 participant