溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

jsp文件操作之如何實(shí)現(xiàn)讀取操作

發(fā)布時(shí)間:2021-11-22 11:46:15 來(lái)源:億速云 閱讀:138 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹jsp文件操作之如何實(shí)現(xiàn)讀取操作,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

文件操作是網(wǎng)站編程的重要內(nèi)容之一,asp關(guān)于文件操作討論的已經(jīng)很多了,讓我們來(lái)看看jsp中是如何實(shí)現(xiàn)的。
  這里用到了兩個(gè)文件,一個(gè)jsp文件一個(gè)javabean文件,通過(guò)jsp中調(diào)用javabean可以輕松讀取文本文件,注意請(qǐng)放置一個(gè)文本文件afile.txt到web根目錄的test目錄下,javabean文件編譯后將class文件放到對(duì)應(yīng)的class目錄下(tomcat環(huán)境)。
Read.jsp

<%--調(diào)用javabean>


文件內(nèi)容:



<% int="" count="0;">
<% while="">
<%>
第<%>行:
<%>
    
<%>

undefined





//DelimitedDataFile.java bean文件源代碼
//導(dǎo)入java包
import java.io.*;
import java.util.StringTokenizer;

public class DelimitedDataFile
{

private String currentRecord = null;
private BufferedReader file;
private String path;
private StringTokenizer token;
//創(chuàng)建文件對(duì)象
public DelimitedDataFile()
{
     file = new BufferedReader(new InputStreamReader(System.in),1);
}
public DelimitedDataFile(String filePath) throws FileNotFoundException
{
    
     path = filePath;
     file = new BufferedReader(new FileReader(path));
}
     //設(shè)置文件路徑
     public void setPath(String filePath)
        {
            
            path = filePath;
try {
file = new BufferedReader(new
FileReader(path));
} catch (FileNotFoundException e) {
            System.out.println("file not found");
            }
    
        }
//得到文件路徑
     public String getPath() {
        return path;
}
//關(guān)閉文件
public void fileClose() throws IOException
{
    
     file.close();
}
//讀取下一行記錄,若沒(méi)有則返回-1
public int nextRecord()
{
    
    
     int returnInt = -1;
     try
     {
     currentRecord = file.readLine();
     }
    
     catch (IOException e)
     {
     System.out.println("readLine problem, terminating.");
     }
    
     if (currentRecord == null)
     returnInt = -1;
     else
     {
     token = new StringTokenizer(currentRecord);
     returnInt = token.countTokens();
     }
     return returnInt;
}

    //以字符串的形式返回整個(gè)記錄
public String returnRecord()
{

return currentRecord;
}
}

以上是“jsp文件操作之如何實(shí)現(xiàn)讀取操作”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

jsp
AI