1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
| package ADV_0; import org.apache.commons.io.FileUtils; import java.io.*; import java.util.Arrays; public class ADVZc2 { public static void main(String[] args) throws Exception { System.out.println("======创建File对象获取信息======"); File f1 = new File("M:\\java开发.jpg"); System.out.println(f1.length()); System.out.println(f1.getName()); System.out.println(f1.isFile()); System.out.println(f1.isDirectory()); System.out.println(f1.getAbsoluteFile()); System.out.println("======创建不存在的文件和删除======"); File f2 = new File("D:\\wg.txt"); System.out.println(f2.exists()); System.out.println(f2.createNewFile()); System.out.println(f2.delete()); System.out.println("======文件夹======"); File f3 = new File("D:\\resource\\aaa"); System.out.println(f3.mkdir()); File f4 = new File("D:\\ccc\\ddd\\eee"); System.out.println(f4.mkdirs()); System.out.println("======获取某个目录下的全部一级文件名称======"); File f5 = new File("D:\\ccc\\ddd\\eee"); String[] names = f5.list(); for (String name : names) { System.out.println(name); } File[] files = f5.listFiles(); for (File file : files) { System.out.println(file.getAbsoluteFile()); } System.out.println("======File遍历一级文件对象的操作======"); File f6 = new File("D:\\ccc\\ddd\\eee");
File[] f7 = f6.listFiles(); System.out.println(Arrays.toString(f7)); System.out.println("--------字符编码和解码--------"); String name = "噔噔哒哒wgzc777"; byte[] bytes = name.getBytes("GBK"); System.out.println(bytes.length); System.out.println(Arrays.toString(bytes)); String name2 = new String(bytes, "GBK"); System.out.println(name2); try { File dir = new File("D:/"); searchFile(dir, "QQ.exe"); } catch (Exception e) { e.printStackTrace(); } System.out.println("-----文件字节输入流0-----"); InputStream is0 = new FileInputStream("src\\ADV_0\\wgzc00.txt"); int b; while ((b = is0.read()) != -1) { System.out.print((char) b); } is0.close(); System.out.println("-----文件字节输入流1-----"); InputStream is1 = new FileInputStream("src\\ADV_0\\wgzc00.txt"); byte[] buffer = new byte[3]; int len; while ((len = is1.read(buffer)) != -1) { String str = new String(buffer,0, len); System.out.print(str); } is1.close(); System.out.println("-----文件字节输入流2-----"); InputStream is2 = new FileInputStream("src\\ADV_0\\wgzc00.txt"); byte[] bytes1 = is2.readAllBytes(); String rs = new String(bytes1); System.out.println(rs); is2.close(); System.out.println("-----文件字节输出流-----"); OutputStream os = new FileOutputStream("src/ADV_0/wgzc01.txt", true); os.write(97); os.write('b'); os.write("\r\n".getBytes()); byte[] bytes0 = "山舞银蛇,原驰蜡象,欲与天公试比高".getBytes(); os.write(bytes0); os.write("\r\n".getBytes()); os.write(bytes0, 0, 3); os.write("\r\n".getBytes()); os.close(); System.out.println("-----文件字节流完成文件复制操作-----"); copyFile0("E:\\wj_old.jpg", "D:\\wj_new.jpg"); System.out.println("-----文件字符输入流-----"); try (Reader fr = new FileReader("src\\ADV_0\\wgzc00.txt");) { char[] chs = new char[3]; int lens; while ((lens = fr.read(chs)) != -1){ String str = new String(chs,0,lens); System.out.print(str); } }catch (Exception e){ e.printStackTrace(); } try ( Reader fr = new FileReader("src\\ADV_0\\wgzc00.txt"); BufferedReader br = new BufferedReader(fr); ) {
String line; while ((line = br.readLine()) != null){ System.out.println(line); } }catch (Exception e){ e.printStackTrace(); } System.out.println("-----文件字符输出流-----"); try (
Writer fw = new FileWriter("src\\ADV_0\\wgzc01.txt", true); ){ fw.write('a'); fw.write(98); fw.write('微'); fw.write("\r\n"); fw.write("java"); fw.write(" 大风起兮云飞扬。\n" + " 威加海内兮归故乡。\n" + " 安得猛士兮守四方!\n"); fw.write("\r\n"); fw.write("java", 1, 2); fw.write("\r\n"); char[] chars = "java".toCharArray(); fw.write(chars); fw.write("\r\n"); fw.write(chars, 1, 2); fw.write("\r\n");
} catch (Exception e) { e.printStackTrace(); } try (
Writer fw = new FileWriter("src\\ADV_0\\wgzc01.txt", true); BufferedWriter bw = new BufferedWriter(fw); ){ bw.write('a'); bw.write(98); bw.write('光'); bw.newLine(); bw.write("java"); bw.write("我爱Java,但是Java要找不到工作了"); bw.newLine(); bw.write("java", 1, 2); bw.newLine(); char[] chars = "java".toCharArray(); bw.write(chars); bw.newLine(); bw.write(chars, 1, 2); bw.newLine(); } catch (Exception e) { e.printStackTrace(); } System.out.println("-----不同编码读取乱码-----"); try ( Reader fr = new FileReader("day03-file-io\\src\\dlei09.txt"); BufferedReader br = new BufferedReader(fr); ) { String line; while ((line = br.readLine()) != null){ System.out.println(line); } }catch (Exception e){ e.printStackTrace(); } try ( InputStream is = new FileInputStream("day03-file-io\\src\\dlei09.txt"); Reader isr = new InputStreamReader(is, "GBK"); BufferedReader br = new BufferedReader(isr); ) { String line; while ((line = br.readLine()) != null){ System.out.println(line); } }catch (Exception e){ e.printStackTrace(); } System.out.println("-----特殊数据流-----"); try ( DataOutputStream dos = new DataOutputStream(new FileOutputStream("day03-file-io\\src\\data.txt")); ){ dos.writeByte(34); dos.writeUTF("你好"); dos.writeInt(3665); dos.writeDouble(9.9); }catch (Exception e){ e.printStackTrace(); } try ( DataInputStream dis = new DataInputStream(new FileInputStream("day03-file-io\\src\\data.txt")); ){ System.out.println(dis.readByte()); System.out.println(dis.readUTF()); System.out.println(dis.readInt()); System.out.println(dis.readDouble()); }catch (Exception e){ e.printStackTrace(); } try (
PrintStream ps = new PrintStream(new FileOutputStream("day03-file-io/src/ps.txt", true));
){ ps.println(97); ps.println('a'); ps.println("黑马"); ps.println(true); ps.println(99.9); }catch (Exception e){ e.printStackTrace(); } FileUtils.copyFile(new File("E:\\wj_old.jpg"), new File("D:\\wj_new.jpg")); FileUtils.deleteDirectory(new File("E:\\resource\\图片")); }
public static void searchFile(File dir, String fileName) throws Exception { if (dir == null || !dir.exists() || dir.isFile()) { return; } File[] files = dir.listFiles(); if (files != null && files.length > 0) { for (File file : files) { if (file.isFile()) { if (file.getName().contains(fileName)) { System.out.println("找到目标文件:" + file.getAbsolutePath()); Runtime r = Runtime.getRuntime(); r.exec(file.getAbsolutePath()); } } else { searchFile(file, fileName); } } } } public static void copyFile0(String srcPath, String destPath) { InputStream fis = null; OutputStream fos = null; try { fis = new FileInputStream(srcPath); fos = new FileOutputStream(destPath); byte[] buffer = new byte[1024]; int len; while ((len = fis.read(buffer)) != -1) { fos.write(buffer, 0, len); } System.out.println("复制成功!"); } catch (Exception e) { e.printStackTrace(); } finally { try { if(fos != null) fos.close(); } catch (Exception e) { e.printStackTrace(); } try { if(fis != null) fis.close(); } catch (Exception e) { e.printStackTrace(); } } } public static void copyFile1(String srcPath, String destPath) { try ( InputStream fis = new FileInputStream(srcPath); OutputStream fos = new FileOutputStream(destPath); MyConn conn = new MyConn(); ){ byte[] buffer = new byte[1024]; int len; while ((len = fis.read(buffer)) != -1) { fos.write(buffer, 0, len); } System.out.println("复制成功!"); } catch (Exception e) { e.printStackTrace(); } } public static void copyFile2(String srcPath, String destPath) { try ( InputStream fis = new FileInputStream(srcPath); InputStream bis = new BufferedInputStream(fis); OutputStream fos = new FileOutputStream(destPath); OutputStream bos = new BufferedOutputStream(fos); ){ byte[] buffer = new byte[1024]; int len; while ((len = bis.read(buffer)) != -1) { bos.write(buffer, 0, len); } System.out.println("复制成功!"); } catch (Exception e) { e.printStackTrace(); } } } class MyConn implements Closeable { @Override public void close() throws IOException { System.out.println("资源关闭!"); } }
|