You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package Path_Manipulate;
-
- import java.io.File;
-
- public class Path_Manipulate {
-
- public void bad(){
-
- String path = System.getProperty("dir");
- File f = new File(path); // bad 路径遍历
- f.delete();
- }
-
-
- public void good(){
-
- String path = "C:" + File.separator + "test.txt";
- File f = new File(path); // good 路径遍历
- f.delete();
- }
-
-
- }
|