当前位置: 技术问答>java相关
初学者,问个简单的问题:System.in怎么使用?
来源: 互联网 发布时间:2015-09-09
本文导语: 可以在控制台直接输入数据,不用再使用JOptionPane.showInputDialog,怎么写啊?我不会,请给位多多指教!~~ | 给你一个从控制台(键盘)读取一个字节数组的例子吧,但愿对你能有帮助: import ...
可以在控制台直接输入数据,不用再使用JOptionPane.showInputDialog,怎么写啊?我不会,请给位多多指教!~~
|
给你一个从控制台(键盘)读取一个字节数组的例子吧,但愿对你能有帮助:
import java.io.*;
public class ReadBytes{
public static void main(String[] args) throws IOException {
byte data[] = new byte[10];
System.out.println("Enter some characters.");
System.in.read(data);
System.out.println("You entered:");
for(int i = 0 ; i
import java.io.*;
public class ReadBytes{
public static void main(String[] args) throws IOException {
byte data[] = new byte[10];
System.out.println("Enter some characters.");
System.in.read(data);
System.out.println("You entered:");
for(int i = 0 ; i