从控制台读取Char
import java.io.*;
public class 从控制台读取char {
public static void main(String[] args) throws IOException{
// 使用 System.in 创建 BufferedReader
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
char c;
System.out.println("输入字符, 按下 'q' 键退出。");
// 读取字符
do {
c = (char) br.read();
System.out.print(c);
} while (c != 'q');
}
}
执行结果
输入字符, 按下 'q' 键退出。
www.weijun901.com
www.weijun901.com
q
q
进程已结束,退出代码0
从控制台读取String
结果都差不多,多少还是有点区别
import java.io.*;
public class 从控制台读取String {
public static void main(String[] args) throws IOException{
// 使用 System.in 创建 BufferedReader
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str;
System.out.println("输入字符串,按下 'end' 退出。");
// 读取字符串
do {
str = br.readLine();
System.out.print(str);
} while (!str.equals("end"));
}
}
执行结果
输入字符, 按下 'end' 键退出。
www.weijun901.com
www.weijun901.com
end
end
进程已结束,退出代码0
创建文件
import java.io.*;
import java.util.Scanner;
public class 创建文件 {
public static void main(String[] args) throws IOException {
//从键盘接收[文件名]
System.out.println("请输入要创建的文件名:");
Scanner scan = new Scanner(System.in);
try {
if (scan.hasNext()) {
String nf = scan.next();
// 创建[文件]
File file = new File(nf);
// 构建FileOutputStream对象
FileOutputStream fop = new FileOutputStream(file);
// 关闭输出流,释放系统资源
fop.close();
}
scan.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
执行结果
请输入要创建的文件名:
weijun.txt
进程已结束,退出代码0
创建目录
import java.io.*;
import java.util.Scanner;
public class 创建目录 {
public static void main(String[] args) throws IOException {
//从键盘接收[目录名]
System.out.println("请输入要创建的目录名:");
Scanner scan = new Scanner(System.in);
try {
if (scan.hasNext()) {
String nl = scan.next();
// 创建[目录]
File file = new File(nl);
file.mkdir();
// 构建FileOutputStream对象
FileOutputStream fop = new FileOutputStream(file);
// 关闭输出流,释放系统资源
fop.close();
}
scan.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
执行结果
请输入要创建的目录名:
weijun
进程已结束,退出代码0
读取文件
import java.io.*;
import java.util.Scanner;
public class 读取文件 {
public static void main(String[] args) throws IOException{
//从键盘接收[文件名]
System.out.println("请输入要打开的文件名:");
Scanner scan = new Scanner(System.in);
try {
if (scan.hasNext()){
String rf = scan.next();
// 构建FileInputStream对象,文件不存在会自动新建
FileInputStream fip = new FileInputStream(rf);
// 构建InputStreamReader对象,参数可以指定编码,默认为UTF-8
InputStreamReader reader = new InputStreamReader(fip, "UTF-8");
// 构建StringBuffer对象
StringBuffer sb = new StringBuffer();
while (reader.ready()) {
// 追加到StringBuffer对象中
sb.append((char)reader.read());
}
System.out.println(sb);
reader.close();
fip.close();
}
scan.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
执行结果
请输入要打开的文件名:
weijun.txt
www.weijun901.com
进程已结束,退出代码0