File establishment / check and deletion <% @ page contenttype = "text / html; charSet = GB2312"%> <% @ page import = "java.io. *"%>
<% String path = request.getRealPath (""); // out.println (path); file f = new file (path, "file.txt"); // out.println (f); // OUT. PRINTLN (F.Exists ());
IF (F.Exists ()) {// Check if file.txt exists in f.delete (); // Delete file.txt file out.println (Path "//file.txt exists, deleted."); } else {f.createNewFile (); // Create a file named file.txt in the current directory Out.println (Path "//file.txt does not exist,"); // Output is currently Directory path}%>
Content / Check and Delete <% @ Page ContentType = "TEXT / HTML; Charset = GB2312"%> <% @ page import = "java.io. *"%>
<% String path = request.getRealPath (""); path = path "// sub"; // will be created directory path file D = new file (path); // Establish a File object representative of the SUB directory, and Get a reference IF (D.Exists ()) {// check if the SUB directory exists (); out.println ("Sub directory exists, deleted");} else {d.mkdir (); // Establish a sub-directory out.println ("Sub directory does not exist, established");}%>
How to process virtual directory in JSP <% @ page contentty = "text / html; charset = GB2312"%> <% @ page import = "java.io. *"%>
Take the disk path corresponding to the virtual directory
The location of the web site main directory is <% = request.getRealPath ("/")%> font>
JSP web page location <% = request.getRealPath ("./")" (". GetRealPath ("../")%" (font>
<% @ Page contentty = "text / html; charSet = GB2312"%> <% @ page import = "java.util.date, java.io. *"%>
<% String path = request.getRealPath ("/"); file f = new file (path, "readdata.txt"); if (f.exists ()) {%> <% = f.getname ()%> the properties are as follows:
file length is: <% = f.length ()%> <% = f.isFile () "is a file":? "is not a file"%>
<% = F.ISDirectory ()? "is a directory": "Not a directory"%>
<% = f.canread ()? "Readable": "Do not read"%>
<% = f. CanWrite ()? "Write": "Not Writing"%>
<% = f.ishidden ()? "is a hidden file": "Not hidden file"%>
File final modification date To: <% = new date (f.lastmodified ())%>
<%} else {f.createNewFile (); // Create a file%> <% = in the current directory f.getName ()%> attributes are as follows:
file length is:? <% = f.length ()%> <% = f.isFile () "file": "No file"% >
<% = f.Indirectory ()? "is a directory": "Not a directory"%>
<% = f.canread ()? "Readable": "Do not read"%> < Br> <% = f.canwrite ()? "Write": "Not Write"%>
<% = f.ishidden ()? "is a hidden file": "Not hidden file"%> < The final modification date of the Br> file is: <% = new date (f.lastmodified ())%>
<%}%>
Take out the file in the directory <% @ Page ContentType = "text / html; charset = GB2312"%> <% @ page import = "java.io. *"%>
<% String path = request.getRealPath ("/"); file d = new file (path); // Establish the file object file list "in the current directory" file list [] = D.ListFiles (); // acquire the representative directory File object array of all files Out.println ("" PATH "directory: font>
"); for (int i = 0; i
" PATH " directory directory: font>
"); for (int i = 0; i
<% String path = request.getRealPath ("/"); out.println (path); fileReader fr = new fileReader (Path //atend.txt" "// established FileReader object, and instantiates FR / / A object generated by the FileReader class uses the READ () method, you can read the next character from the character stream. if (fr.read () == - 1) // determines if the end of the file is read {OUT.PRINT ("There is no data
" in atend.txt file ");} else {Out.println (" Atend Data in .txt file ");} fr.close ();%>
Read all file data <% @ page contenttype = "text / html; charset = GB2312"%> <% @ page import = "java.io. *, Java.lang. *"%>
<% String path = request.getRealPath ("."); FileReader fr = new fileReader (Path "//ReadData.txt") ;// key is during reading, to determine if the read character has arrived. The end of the file, and this character is not a broken line in the file, ie it is determined whether the character value is 13. INT c = fr.read (); // reads a character // from the file to determine if the file ends are read, while (c! = - 1) {Out.print ((char) c); // Output Data c = fr.read (); // Continue to read data IF from the file (c == 13) {// Judgment whether it is a broken character out.print ("
"); // Output Branch Label fr.skip (1); // Skose a character //c=fr.read ();// read a character}} fr.close ();%> One row reading data <% @Page ContentType = "Text / html; charset = GB2312"%> <% @ page import = "java.io. *"%>
<% String path = request.getRealPath (""); // Get the path of the current directory FileReader fr = new fileReader (PATH //File/INC / / / RTI ID t 建 建 " Instantiate to fr bufferedreader br = new bufferedreader (fr); // Establish a bufferedReader object, and instantiate to br string line = br.readline (); // read a line of string from the file // judge the character read Whether the string is not empty while (line! = Null) {outputln (line "
"); // Output data read from the file line = br.readline (); // Continue from the file Read a line of data} br.close (); // Turn off the bufferedReader object fr.close (); // Off file%>
Listening the characters in the file do not read <% @ Page ContentType = "Text / HTML; Charset = GB2312"%> <% @ page import = "java.io. *"%>
<% String path = request.getRealPath ("."); FileReader fr = new fileReader (Path "//ReadData.txt" );fr.skip(2);// skip 2 bytes int C = fr .read (); // Read a byte while (c! = - 1) {OUT.PRINT ((char) c); c = fr.read ();} fr.close ();%>
Write the data <% @ page contentty = "text / html; charset = GB2312"%> <% @ page import = "java.io. *"%>
<% String path = request.getRealPath ("."); FileWriter FW = New FileWriter (Path //WriteData.txt ": // establishes a FileWriter object, and instantiate FW // Write strings into file FW .write ("Hello!"); fw.write ("This book is" JSP programming skill "); fw.write (" Please give me a lot! "); fw.write (" email: stride@sina.com "); fw.close (); FileReader fr = new fileReader (path " //writedata.txt" ); bufferedReader br = New BufferedReader (fr); // Establish a bufferedReader object, and instantiate to Brstring Line = Br. Readline (); // Reads a line of data out.println (line "
"); br.close (); // Close BufferedReader object fr.close ();%>
<% @ Page contentty = "text / html; charset = GB2312"%> <% @ Page Import = "Java.io. *"%>
<% String path = Request.getRealPath ("."); FileWriter FW = new filewriter (Path "//writedata.txt" ); bufferedwriter bw = new bufferedwriter (fw); bw.write (" Hello! ") BW.WRITE ("This book is" JSP programming skills "."); bw.newline (); // break BW.WRITE ("Please give me a lot!"); bw.newline (); // Broken BW. Write ("email: stride@sina.com"); bw.flush (); // update data to file fw.close (); // Off File Out.println ("Write file content is:
"); FileReader fr = new fileReader (path " //writedatedata.txt" ); bufferedreader br = new bufferedreader (fr); string line = br.readline (); // read a line of data while (line! = NULL) {OUT.PRINTLN (Line "
"); line = br.readline ();} fr.close ();%>
How to add data to file <% @ Page ContentType = "text / html; charset = GB2312"%> <% @ page import = "java.io. *"%>