欢迎光临
我们一直在努力

Java控制台输入,输出!-JSP教程,Java技巧及代码

建站超值云服务器,限时71元/月

/* * created on 2005-4-5

* * todo to change the template for this generated file go to

* window – preferences – java – code style – code templates

*/

import java.io.bufferedreader;

import java.io.ioexception;

import java.io.inputstreamreader;

/**

* @author zhangql

*

* todo to change the template for this generated type comment go to

* window – preferences – java – code style – code templates

*/

public class enterconsole

{

public static void main(string[] args) throws ioexception

{

enterconsole enterconsole = new enterconsole();

enterconsole.printconsolechar();

}

/**

* 从控制对接收一行字符串,然后输出到控制台

* @throws ioexception

*/

public void printconsoleline() throws ioexception

{

bufferedreader br = new bufferedreader(new inputstreamreader(system.in));

string str = null;

system.out.println("enter your value:");

str = br.readline();

system.out.println("your value is :"+str);

}

/**

* 从控制台接收一个字符

* 然后打印到控制台上

* @throws ioexception

*/

public void printconsolechar() throws ioexception

{

system.out.print("enter a char:");

char i = (char) system.in.read();

system.out.println("your char is :"+i);

}

}

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » Java控制台输入,输出!-JSP教程,Java技巧及代码
分享到: 更多 (0)