01 2021 档案
摘要://将 数字转成字符串Integer number = new Integer(88888);String s = number.toString();System.out.println(s);//将 int 类型的数字转换成字符串int i = 88888;String s1 = String.
阅读全文
摘要:public static void main(String[] args) throws IOException { File file = new File("D:\\io\\myTest.txt"); //文件地址 if(file.exists()){ //文件已经存在 System.out.
阅读全文