当前位置: 技术问答>java相关
非常easy的问题 如何输入数据
来源: 互联网 发布时间:2015-10-01
本文导语: 初学java,请老大帮忙。 在java中如何输入数据?包括int,float.double,char,byte等等 在C++里只要cin>>就可以了,那么在java中呢? 在线等待。 | try { int n=0; byte[] b...
初学java,请老大帮忙。
在java中如何输入数据?包括int,float.double,char,byte等等
在C++里只要cin>>就可以了,那么在java中呢?
在线等待。
在java中如何输入数据?包括int,float.double,char,byte等等
在C++里只要cin>>就可以了,那么在java中呢?
在线等待。
|
try {
int n=0;
byte[] b=new byte[100];
String str="";
str= new String(b);
//b长度是100,你读入不够位的话,str有其他空白字符,先trim()一下。
str = str.trim();
n=Integer.parseInt(str);
} catch(Exception ex) {
ex.printStackTrace();
}
int n=0;
byte[] b=new byte[100];
String str="";
str= new String(b);
//b长度是100,你读入不够位的话,str有其他空白字符,先trim()一下。
str = str.trim();
n=Integer.parseInt(str);
} catch(Exception ex) {
ex.printStackTrace();
}
|
这个程序演示如何输入数据 InputTest.java
import javax.swing.*;
public class InputTest
{
public static void main(String[] args)
{
String name = JOptionPane.showInputDialog
("What is your name?");
String input = JOptionPane.showInputDialog
("How old are you?");
int age = Integer.parseInt(input);
System.out.println("Hello,"+name+"your age is "+age);
System.exit(0);
}
java输入采用对话框的形式,用到swing包,所以第一行要引入javax.swing
从对话框输入的默认为字符串,要得到整形或其他形式需调用类型转换的方法
如Integer.parseInt(input)----将输入的字符串转化为int 类型
import javax.swing.*;
public class InputTest
{
public static void main(String[] args)
{
String name = JOptionPane.showInputDialog
("What is your name?");
String input = JOptionPane.showInputDialog
("How old are you?");
int age = Integer.parseInt(input);
System.out.println("Hello,"+name+"your age is "+age);
System.exit(0);
}
java输入采用对话框的形式,用到swing包,所以第一行要引入javax.swing
从对话框输入的默认为字符串,要得到整形或其他形式需调用类型转换的方法
如Integer.parseInt(input)----将输入的字符串转化为int 类型
|
举一个例子来示范如何通过键盘输入一行字符串
import java.io.*;
public class ReadExmpl{
public static void main(String[] args)throws IOException
{
DataInputStream in = new DataInputStream(System.in);
String a;
System.out.print("请输入任一行字符串:");
a = in.readLine();
System.out.println("您输入的字符串是"+a);
in.close();
}
}
import java.io.*;
public class ReadExmpl{
public static void main(String[] args)throws IOException
{
DataInputStream in = new DataInputStream(System.in);
String a;
System.out.print("请输入任一行字符串:");
a = in.readLine();
System.out.println("您输入的字符串是"+a);
in.close();
}
}
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。