Java file operation

xiaoxiao2021-03-06  71

File establishment / check and deletion

<% @ Page ContentType = "text / html; charset = GB2312"%>

<% @ Page Import = "java.io. *"%>

File Establishment, Check and Delete </ Title></p> <p></ hEAD></p> <p><body></p> <p><%</p> <p>String path = request.getRealPath ("");</p> <p>//out.println (PATH);</p> <p>FILE F = New File (Path, "File.txt");</p> <p>//out.println (F);</p> <p>//out.println (f.exists ());</p> <p>IF (F.Exists ()) {// Check if file.txt exists</p> <p>f.delete (); // Delete file.txt file</p> <p>Out.println (Path "//file.txt exists, deleted.");</p> <p>} else {</p> <p>f.createNewFile (); // Create a file named file.txt in the current directory</p> <p>Out.println (Path "//file.txt does not exist, established."); // Output current directory path</p> <p>}</p> <p>%></p> <p>Contents of the catalog / check and deletion</p> <p><% @ Page ContentType = "text / html; charset = GB2312"%></p> <p><% @ Page Import = "java.io. *"%></p> <p><html></p> <p><HEAD></p> <p><title> Directory Establish / Check and Delete </ Title></p> <p></ hEAD></p> <p><body></p> <p><%</p> <p>String path = request.getRealPath ("");</p> <p>Path = PATH "// Sub"; // will be created directory path</p> <p>FILE D = New File (PATH); / / Establish a file object representing the SUB directory and gets a reference to it</p> <p>IF (d.exists ()) {// check if the SUB directory exists</p> <p>D. Delete ();</p> <p>OUT.PRINTLN ("Sub directory, deleted");</p> <p>} else {</p> <p>D.mkdir (); // Establish a SUB directory</p> <p>Out.println ("SUB directory does not exist, established");</p> <p>}</p> <p>%></p> <p></ body></p> <p></ html></p> <p>How to handle virtual directories in JSP</p> <p><% @ Page ContentType = "text / html; charset = GB2312"%></p> <p><% @ Page Import = "java.io. *"%></p> <p><html></p> <p><HEAD></p> <p><Title> How to deal with virtual directory </ title></p> <p></ hEAD></p> <p><body></p> <p>Take a disk path corresponding to the virtual directory <br></p> <p>The location of the main directory of the Web site is <font color = # ff0000> <% = request.getRealPath ("/")%> </ font> <br></p> <p>JSP page location <font color = # ff0000> <% = request.getRealPath ("./")" g g / / / t t "j j 网 网 目 上 位置 上 位置 上 位置 上 位置" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" " > <% = Request.getRealPath ("..") "=" "<br></p> <p></ body></p> <p></ html></p> <p>Document attribute</p> <p><% @ Page ContentType = "text / html; charset = GB2312"%></p> <p><% @ Page Import = "java.util.date, java.io. *"%></p> <p><html></p> <p><HEAD></p> <p><Title> File Attributes </ Title></p> <p></ hEAD></p> <p><body></p> <p><%</p> <p>String path = Request.getRealPath ("/");</p> <p>File f = new file (path, "readdata.txt");</p> <p>IF (f.exists ()) {</p> <p>%></p> <p><% = F.getName ()%> following properties: <br> <br></p> <p>The file length is: <% = f.length ()%></p> <p><% = f.isfile ()? "Yes File": "Not File"%> <br></p> <p><% = f.IsDirectory ()? "is a directory": "Not a directory"%> <br></p> <p><% = f.canread ()? "Readable": "Do not read"%> <br></p> <p><% = f.canwrite ()? "writable": "Not Writing"%> <br></p> <p><% = f.ishidden ()? "is a hidden file": "Not hidden file"%> <br></p> <p>The final modification date of the file is: <% = new Date (f.lastmodified ())%> <br></p> <p><%</p> <p>} else {</p> <p>f.createNewFile (); // Create a file called readata.txt in the current directory</p> <p>%></p> <p><% = F.getName ()%> following properties: <br> <br></p> <p>The file length is: <% = f.length ()%></p> <p><% = f.isfile ()? "Yes File": "Not File"%> <br></p> <p><% = f.IsDirectory ()? "is a directory": "Not a directory"%> <br></p> <p><% = f.canread ()? "Readable": "Do not read"%> <br></p> <p><% = f.canwrite ()? "writable": "Not Writing"%> <br></p> <p><% = f.ishidden ()? "is a hidden file": "Not hidden file"%> <br></p> <p>The final modification date of the file is: <% = new Date (f.lastmodified ())%> <br></p> <p><%}</p> <p>%></p> <p></ body></p> <p></ html></p> <p>Remove the method of files in the directory</p> <p><% @ Page ContentType = "text / html; charset = GB2312"%></p> <p><% @ Page Import = "java.io. *"%></p> <p><html></p> <p><HEAD></p> <p><title> Remove the method in the directory - list files in the directory </ title></p> <p></ hEAD></p> <p><body></p> <p><%</p> <p>String path = Request.getRealPath ("/");</p> <p>FILE D = New File (PATH); / / Establish the file object in the current directory</p> <p>File List [] = D.ListFiles (); // A number of file objects that represent all files in the directory</p> <p>Out.println ("<font color = # ff0000>" PATH "directory: </ font> <br>");</p> <p>For (int I = 0; i <list.length; i ) {</p> <p>IF (List <i> .isfile ()) {</p> <p>Out.println (List <i> .Getname () "<br>");</p> <p>}</p> <p>}</p> <p>Out.println ("<br> <font color = # ff0000>" "directory: </ font> <br>);</p> <p>For (int I = 0; i <list.length; i ) {</p> <p>IF (List <i> .Indirectory ()) {</p> <p>Out.println (List <i> .Getname () "<br>");</p> <p>}</p> <p>}</p> <p>%></p> <p></ body></p> <p></ html></p> <p>Judgment is a blank file</p> <p><% @ Page ContentType = "text / html; charset = GB2312"%></p> <p><% @ Page Import = "java.io. *"%></p> <p><html></p> <p><HEAD></p> <p><title> Judging whether it is blank file </ title></p> <p></ hEAD></p> <p><body></p> <p><%</p> <p>String path = Request.getRealPath ("/");</p> <p>Out.println (PATH);</p> <p>FileReader fr = new fileReader (path "//atend.txt" );// establishes FileReader object, and instantiates FR</p> <p>/ / The object generated by the FileReader class uses the read () method, which can read the next character from the character stream.</p> <p>IF (fr.read () == - 1) // determine if the end of the file has been read</p> <p>{</p> <p>Out.print (no data <br> "in atend.txt file);</p> <p>} else {</p> <p>Out.println ("ATEND.TXT file has data");</p> <p>}</p> <p>Fr.close ();</p> <p>%></p> <p></ body></p> <p></ html></p> <p>Read all file data</p> <p><% @ Page ContentType = "Text / HTML; Charset = GB2312"%> <% @ page import = "java.io. *, Java.lang. *"%></p> <p><html></p> <p><HEAD></p> <p><Title> Read all file data </ ​​title></p> <p></ hEAD></p> <p><body></p> <p><%</p> <p>String path = Request.getRealPath (".");</p> <p>FileReader fr = new fileReader (Path "//ReadData.txt");</p> <p>/ / The key is that during the reading, it is to be determined whether the read characters have reached 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.</p> <p>INT C = fr.read (); // Read a character from the file</p> <p>/ / Judgment whether the end of the file has been read</p> <p>While (c! = - 1) {</p> <p>OUT.PRINT ((char) c); / / Output read data</p> <p>c = fr.read (); // Continue to read data from the file</p> <p>IF (c == 13) {// Judgment whether it is a broken character</p> <p>Out.print ("<br>"); // Output Branch Tag</p> <p>Fr.skip (1); // Skose a character</p> <p>//c=fr.read ();// read a character</p> <p>}</p> <p>}</p> <p>Fr.close ();</p> <p>%></p> <p></ body></p> <p></ html></p> <p>Read data a row</p> <p><% @ Page ContentType = "text / html; charset = GB2312"%></p> <p><% @ Page Import = "java.io. *"%></p> <p><html></p> <p><HEAD></p> <p><title> file reading </ title></p> <p></ hEAD></p> <p><body></p> <p><%</p> <p>String path = request.getRealPath (""); // get the path to the current directory</p> <p>FileReader fr = new fileReader (Path "//file/inc///t.txt"" ;//> Establishing a FileReader object, and instantiate to FR</p> <p>BufferedReader Br = New BufferedReader (fr); // Establish a bufferedReader object and instantiate to BR</p> <p>String line = br.readline (); // read a string from the file</p> <p>/ / Judgment whether the read string is not empty</p> <p>While (line! = null) {</p> <p>Out.println (Line "<br>"); / / Output data read from the file</p> <p>LINE = br.readline (); // Continue to read a line of data from the file</p> <p>}</p> <p>Br.close (); // Close BufferedReader object</p> <p>fr.close (); // Turk</p> <p>%></p> <p></ body></p> <p></ html></p> <p>I'll not read the characters in the file</p> <p><% @ Page ContentType = "text / html; charset = GB2312"%></p> <p><% @ Page Import = "java.io. *"%></p> <p><html></p> <p><HEAD></p> <p><Title> Listening to bytes </ Title></p> <p></ hEAD></p> <p><body> <%</p> <p>String path = Request.getRealPath (".");</p> <p>FileReader fr = new fileReader (Path "//ReadData.txt");</p> <p>Fr.skip (2); // Skip 2 bytes</p> <p>INT C = fr.read (); // Read a byte</p> <p>While (c! = - 1) {</p> <p>Out.print (CHAR) C);</p> <p>C = fr.read ();</p> <p>}</p> <p>Fr.close ();</p> <p>%></p> <p></ body></p> <p></ html></p> <p>Write data into files</p> <p><% @ Page ContentType = "text / html; charset = GB2312"%></p> <p><% @ Page Import = "java.io. *"%></p> <p><html></p> <p><HEAD></p> <p><title> Write data into file </ title></p> <p></ hEAD></p> <p><body></p> <p><%</p> <p>String path = Request.getRealPath (".");</p> <p>FileWriter FW = New FileWriter (Path "//WriteData.txt": // Established a FileWriter object, and instantiate FW</p> <p>// write a string to the file</p> <p>fw.write ("Hello!");</p> <p>Fw.write ("This book is" JSP Programming Skills "");</p> <p>fw.write ("Please give me a lot!");</p> <p>Fw.write ("email: stride@sina.com");</p> <p>Fw.close ();</p> <p>FileReader fr = new fileReader (Path "//writedata.txt");</p> <p>BufferedReader Br = New BufferedReader (fr); // Establish a bufferedReader object and instantiate to BR</p> <p>String line = br.readline ();</p> <p>// read a line of data</p> <p>Out.println (Line "<br>");</p> <p>Br.close (); // Close BufferedReader object</p> <p>Fr.close ();</p> <p>%></p> <p></ body></p> <p></ html></p> <p>Write the data branch of the file</p> <p><% @ Page ContentType = "text / html; charset = GB2312"%></p> <p><% @ Page Import = "java.io. *"%></p> <p><html></p> <p><HEAD></p> <p><title> Write the data branch of the file </ title></p> <p></ hEAD></p> <p><body></p> <p><%</p> <p>String path = Request.getRealPath (".");</p> <p>FileWriter FW = New FileWriter (Path "//writedata.txt");</p> <p>BufferedWriter BW = New BufferedWriter (FW);</p> <p>BW.WRITE ("Hello!");</p> <p>BW.WRITE ("This book is" JSP programming skills ".");</p> <p>Bw.newline (); // broken</p> <p>BW.WRITE ("Please pay more attention!");</p> <p>BW.NEWLINE (); // Broken BW.WRITE ("email: stride@sina.com");</p> <p>Bw.flush (); // update data to file</p> <p>fw.close (); // Turn off the file stream</p> <p>Out.println ("Write file content is: <br>");</p> <p>FileReader fr = new fileReader (Path "//writedata.txt");</p> <p>BufferedReader Br = New BufferedReader (FR);</p> <p>String line = br.readline (); // read a line of data</p> <p>While (line! = null) {</p> <p>Out.println (Line "<br>");</p> <p>Line = br.readline ();</p> <p>}</p> <p>Fr.close ();</p> <p>%></p> <p></ body></p> <p></ html></p> <p>How to add data to files</p> <p><% @ Page ContentType = "text / html; charset = GB2312"%></p> <p><% @ Page Import = "java.io. *"%></p> <p><html></p> <p><HEAD></p> <p><title> Write the data branch of the file </ title></p> <p></ hEAD></p> <p><body></p> <p><%</p> <p>String path = Request.getRealPath (".");</p> <p>RandomaccessFile Rf = new randomaccessfile (Path "//writedata.txt", "rw"), define a class randomaccessfile object, and instantiate</p> <p>Rf.seek (rf.Length ()); // Move the pointer to the end of the file</p> <p>Rf.writebytes ("/ NAPPEND A LINE to the File!");</p> <p>Rf.close (); // Turn the file stream</p> <p>Out.println ("Write file content is: <br>");</p> <p>FileReader fr = new fileReader (Path "//writedata.txt");</p> <p>BufferedReader Br = New BufferedReader (fr); // Read the bufferedRead object of the file</p> <p>String line = br.readline ();</p> <p>While (line! = null) {</p> <p>Out.println (Line "<br>");</p> <p>Line = br.readline ();</p> <p>}</p> <p>fr.close (); // Turk</p> <p>%></p> <p></ body></p> <p></ html> </ i> </ i> </ i> </ i></p></div><div class="text-center mt-3 text-grey"> 转载请注明原文地址:https://www.9cbs.com/read-107082.html</div><div class="plugin d-flex justify-content-center mt-3"></div><hr><div class="row"><div class="col-lg-12 text-muted mt-2"><i class="icon-tags mr-2"></i><span class="badge border border-secondary mr-2"><h2 class="h6 mb-0 small"><a class="text-secondary" href="tag-2.html">9cbs</a></h2></span></div></div></div></div><div class="card card-postlist border-white shadow"><div class="card-body"><div class="card-title"><div class="d-flex justify-content-between"><div><b>New Post</b>(<span class="posts">0</span>) </div><div></div></div></div><ul class="postlist list-unstyled"> </ul></div></div><div class="d-none threadlist"><input type="checkbox" name="modtid" value="107082" checked /></div></div></div></div></div><footer class="text-muted small bg-dark py-4 mt-3" id="footer"><div class="container"><div class="row"><div class="col">CopyRight © 2020 All Rights Reserved </div><div class="col text-right">Processed: <b>0.047</b>, SQL: <b>9</b></div></div></div></footer><script src="./lang/en-us/lang.js?2.2.0"></script><script src="view/js/jquery.min.js?2.2.0"></script><script src="view/js/popper.min.js?2.2.0"></script><script src="view/js/bootstrap.min.js?2.2.0"></script><script src="view/js/xiuno.js?2.2.0"></script><script src="view/js/bootstrap-plugin.js?2.2.0"></script><script src="view/js/async.min.js?2.2.0"></script><script src="view/js/form.js?2.2.0"></script><script> var debug = DEBUG = 0; var url_rewrite_on = 1; var url_path = './'; var forumarr = {"1":"Tech"}; var fid = 1; var uid = 0; var gid = 0; xn.options.water_image_url = 'view/img/water-small.png'; </script><script src="view/js/wellcms.js?2.2.0"></script><a class="scroll-to-top rounded" href="javascript:void(0);"><i class="icon-angle-up"></i></a><a class="scroll-to-bottom rounded" href="javascript:void(0);" style="display: inline;"><i class="icon-angle-down"></i></a></body></html><script> var forum_url = 'list-1.html'; var safe_token = 'GB3_2FbEgM9ypfXpYMbxcIYveC3UYNGMlruoekEQ8Sme2iLjBEuifZbLn6dxbG5_2Ba0P0oKjqF39e5RpzSEZ91KIA_3D_3D'; var body = $('body'); body.on('submit', '#form', function() { var jthis = $(this); var jsubmit = jthis.find('#submit'); jthis.reset(); jsubmit.button('loading'); var postdata = jthis.serializeObject(); $.xpost(jthis.attr('action'), postdata, function(code, message) { if(code == 0) { location.reload(); } else { $.alert(message); jsubmit.button('reset'); } }); return false; }); function resize_image() { var jmessagelist = $('div.message'); var first_width = jmessagelist.width(); jmessagelist.each(function() { var jdiv = $(this); var maxwidth = jdiv.attr('isfirst') ? first_width : jdiv.width(); var jmessage_width = Math.min(jdiv.width(), maxwidth); jdiv.find('img, embed, iframe, video').each(function() { var jimg = $(this); var img_width = this.org_width; var img_height = this.org_height; if(!img_width) { var img_width = jimg.attr('width'); var img_height = jimg.attr('height'); this.org_width = img_width; this.org_height = img_height; } if(img_width > jmessage_width) { if(this.tagName == 'IMG') { jimg.width(jmessage_width); jimg.css('height', 'auto'); jimg.css('cursor', 'pointer'); jimg.on('click', function() { }); } else { jimg.width(jmessage_width); var height = (img_height / img_width) * jimg.width(); jimg.height(height); } } }); }); } function resize_table() { $('div.message').each(function() { var jdiv = $(this); jdiv.find('table').addClass('table').wrap('<div class="table-responsive"></div>'); }); } $(function() { resize_image(); resize_table(); $(window).on('resize', resize_image); }); var jmessage = $('#message'); jmessage.on('focus', function() {if(jmessage.t) { clearTimeout(jmessage.t); jmessage.t = null; } jmessage.css('height', '6rem'); }); jmessage.on('blur', function() {jmessage.t = setTimeout(function() { jmessage.css('height', '2.5rem');}, 1000); }); $('#nav li[data-active="fid-1"]').addClass('active'); </script>