概述
//控制台输出
public static void ScannerInputAndOut(){
Scanner in = new Scanner(System.in);
System.out.println(in.nextLine());
}
/**
* 字节流
*/
public static void ByteInputAndOut(){
//输入
BufferedInputStream in = new BufferedInputStream(System.in);
try {
byte[] b = new byte[1024];
in.read(b);
System.out.println(new String(b));
} catch (IOException e) {
e.printStackTrace();
}
//输出
BufferedOutputStream out = new BufferedOutputStream(System.out);
try {
for (int i = 0; i < 5; i++) {
out.write("hello".getBytes());
}
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 字符流
*/
public static void CharInputAndOut(){
//输入
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
try {
System.out.println(in.readLine());
} catch (IOException e) {
e.printStackTrace();
}
//输出
BufferedWriter out = new BufferedWriter(new OutputStreamWriter(System.out));
try {
for (int i = 0; i < 5; i++) {
out.write("hello"+i);
out.newLine();
}
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
最后
以上就是暴躁航空为你收集整理的java控制台输出方式_Java的三种简单的控制台输入和输出方式的全部内容,希望文章能够帮你解决java控制台输出方式_Java的三种简单的控制台输入和输出方式所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复