jsp檔案操作之追加篇

來源:互聯網
上載者:User
js


檔案操作是網站編程的重要內容之一,asp關於檔案操作討論的已經很多了,讓我們來看看jsp中是如何?的。
   這裡用到了兩個檔案,一個jsp檔案一個javabean檔案,通過jsp中調用javabean可以輕鬆追加資料到文字檔,如果大家讀了上寫入篇的話,會發現這篇文章同上一篇有很多相似之處,讀起來也很容易了。
注意請放置一個文字檔afile.txt到web根目錄的test目錄下,以便程式追加資料,javabean檔案編譯後將class檔案放到對應的class目錄下(tomcat環境)。

writeAppend.jsp

<html>
<head>
<title>追加資料</title>
</head>
<body bgcolor="#000000">
<%--建立javabean並設定屬性 --%>
<jsp:useBean id="writer" class="WriteAppend" scope="request">
<jsp:setProperty name="writer" property="path" value="/path/to/afile.txt" />
<jsp:setProperty name="writer" property="something" value="初始化something屬性" />
</jsp:useBean>

<h3>追加資料</h3>

<p>
<%--設定要追加的字串 --%>
<% writer.setSomething("追加資料"); %>
<%--讀取上面設定的字串 --%>
<% out.print(writer.getSomething()); %>
<%--調用writer的writeSomething方法追加檔案並返回成功或者出錯資訊 --%>
<% out.print(writer.writeSomething()); %>

</p>
</body>
</html>

//WriteAppend.java javabean檔案
import java.io.*;

public class WriteAppend {

private String path;//檔案路徑
private String something;//追加的字串變數
//初始化
public WriteAppend() {
path = null;
something = "Default message";
}
//設定檔案路徑
public void setPath(String apath) {
path = apath;
}
//得到檔案路徑
public String getPath() {
return path;
}
//設定要追加的字串
public void setSomething(String asomething) {
something = asomething;
}
//得到要追加的字串
public String getSomething() {
return something;
}
//追加字串
public String writeSomething() {
try {
     //建立檔案path並寫入something字串,注意和寫入篇的區別
FileWriter theFile = new FileWriter(path,true);
PrintWriter out = new PrintWriter(theFile);
     out.print(something + "
");
     out.close();
//關閉檔案並返回success字串
     theFile.close();
     return "success!!";
} catch (IOException e) {
     return e.toString();
}    
}
}

  好了,到此檔案操作的全部內容都完成了,如果您看到這裡,相信您對檔案基本操作已經OK了。




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.