想知道如何轻松的输入输出
/*import public class Xiti1 {
*//**
* @param args
* @throws IOException
*//*
public static void main(String[] args) throws IOException {
byte[] a = new byte[1000];
int count = System.in.read(a);
for (int i = 0; i < count; i++) {
if (a[i] <= 'z' && a[i] >= 'a')
a[i] = (byte) (a[i] - 32);
else
a[i] = (byte) (a[i] + 32);
}
for (int i = 0; i < count; i++) {
System.out.print((char) a[i] + " ");
}
System.out.println();
for (int i = 0; i < count; i++) {
System.out.print(a[i] + " ");
}
System.out.println();
}
}
// 将一个字符串中的小写字母转换成大写字母,并将大写字母转换成小写字母。
问:使用read()输入字符串后,最后按enter键,所以count总会比输入的字符串要多出两个字节来保存enter键,但是我的程序最后得出的结果最后输出多出来的不是enter,而是- *,这是为什么?
还有就是我想知道还有其他方式输入字符串吗?比如stringbuffer,sting 之类的!求教!!谢谢了!