输入和输出:
输入和输出都是从内存的角度出发的,也可以说是java程序角度。
输入到内存的(java程序的)都是输入
从内存的(java程序的)都是输出
02.
import java.io.File;
import java.io.IOException;
public class MyFile {
public static void main(String[] args) throws IOException {
MyFile myFile=new MyFile();
myFile.createfile01();
}
public void createfile01() throws IOException {
String path="d:\\news1.txt";
File file=new File(path);
file.createNewFile();
}
}
import java.io.File;
import java.io.IOException;
public class MyFile {
public static void main(String[] args) throws IOException {
MyFile myFile=new MyFile();
myFile.createfile02();
}
public void createfile02() throws IOException {
File file=new File("d:\\");
String Childpath="new2.txt";
File newFile=new File(file,Childpath);
newFile.createNewFile();
}
}
import java.io.File;
import java.io.IOException;
public class MyFile {
public static void main(String[] args) throws IOException {
MyFile myFile=new MyFile();
myFile.createfile03();
}
public void createfile03() throws IOException {
String parentPath="d:\\";
String childPath="news3.txt";
File file=new File(parentPath,childPath);
file.createNewFile();
}
}
File只是一个java对象,想要在磁盘中去创建File对象,只需要执行createNewFile方法。
04.