亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jsp文件操作之如何實現讀取操作

發布時間:2021-11-22 11:46:15 來源:億速云 閱讀:139 作者:小新 欄目:編程語言

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

文件操作是網站編程的重要內容之一,asp關于文件操作討論的已經很多了,讓我們來看看jsp中是如何實現的。
  這里用到了兩個文件,一個jsp文件一個javabean文件,通過jsp中調用javabean可以輕松讀取文本文件,注意請放置一個文本文件afile.txt到web根目錄的test目錄下,javabean文件編譯后將class文件放到對應的class目錄下(tomcat環境)。
Read.jsp

<%--調用javabean>


文件內容:



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

undefined





//DelimitedDataFile.java bean文件源代碼
//導入java包
import java.io.*;
import java.util.StringTokenizer;

public class DelimitedDataFile
{

private String currentRecord = null;
private BufferedReader file;
private String path;
private StringTokenizer token;
//創建文件對象
public DelimitedDataFile()
{
     file = new BufferedReader(new InputStreamReader(System.in),1);
}
public DelimitedDataFile(String filePath) throws FileNotFoundException
{
    
     path = filePath;
     file = new BufferedReader(new FileReader(path));
}
     //設置文件路徑
     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;
}
//關閉文件
public void fileClose() throws IOException
{
    
     file.close();
}
//讀取下一行記錄,若沒有則返回-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;
}

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

return currentRecord;
}
}

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

jsp
AI

绍兴县| 肥西县| 桐乡市| 丹巴县| 都兰县| 临夏市| 泰宁县| 锡林浩特市| 宣城市| 疏勒县| 张家港市| 祁连县| 太仓市| 安新县| 开封县| 柞水县| 宜兴市| 当涂县| 光泽县| 江北区| 青海省| 犍为县| 荥经县| 金阳县| 大理市| 确山县| 建昌县| 七台河市| 绥滨县| 阜平县| 元氏县| 盐山县| 宣汉县| 温州市| 会理县| 江山市| 九龙坡区| 南皮县| 余干县| 北碚区| 福建省|