一段程序代码,在jcreator中编译运行都没问题,但是在命令窗口运行就出错,为什么?
如题,很简单的一段代码,就是输入字符串,在屏幕上显示,输入bye就终止。publicclassReadLine{publicstaticvoidmain(String[]...
如题,很简单的一段代码,就是输入字符串,在屏幕上显示,输入bye就终止。
public class ReadLine
{
public static void main(String[] args)
{
byte [] buf=new byte[1024];
String strInfo=null;
int pos=0;
int ch=0;
while(true)
{
try
{
ch=System.in.read();
}
catch(Exception e)
{
e.printStackTrace();
}
switch(ch)
{
case'\r':
break;
case'\n':
strInfo=new String(buf,0,pos);
if(strInfo=="bye")
{
return;
}
else
{
System.out.println(strInfo);
pos=0;
break;
}
default:
buf[pos++]=(byte)ch;
}
}
}
} 展开
public class ReadLine
{
public static void main(String[] args)
{
byte [] buf=new byte[1024];
String strInfo=null;
int pos=0;
int ch=0;
while(true)
{
try
{
ch=System.in.read();
}
catch(Exception e)
{
e.printStackTrace();
}
switch(ch)
{
case'\r':
break;
case'\n':
strInfo=new String(buf,0,pos);
if(strInfo=="bye")
{
return;
}
else
{
System.out.println(strInfo);
pos=0;
break;
}
default:
buf[pos++]=(byte)ch;
}
}
}
} 展开
1个回答
金山毒霸
2024-10-31 广告
2024-10-31 广告
大部分系统错误,是因为某些DLL文件丢失造成的,比如未安装DirectX9或DirectX 9.0组件已损坏、缺少Visual C ++库、未安装.net库。解决方法如下:一、 手动解决方法1、先确定电脑操作系统是多少位的,现在的电脑一般都...
点击进入详情页
本回答由金山毒霸提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询