java實(shí)現(xiàn)小說閱讀器功能

小億
179
2023-12-19 12:54:10

要實(shí)現(xiàn)一個(gè)基本的小說閱讀器功能,可以考慮以下幾個(gè)步驟:

  1. 創(chuàng)建一個(gè)圖形用戶界面(GUI),包括一個(gè)文本區(qū)域用于顯示小說內(nèi)容,以及一些控制按鈕,如上一頁(yè)、下一頁(yè)、跳轉(zhuǎn)到指定章節(jié)等。

  2. 創(chuàng)建一個(gè)類來(lái)表示小說,包括屬性如小說名稱、作者、章節(jié)數(shù)、當(dāng)前閱讀的章節(jié)等。

  3. 將小說內(nèi)容存儲(chǔ)在一個(gè)文件中,每一章節(jié)為一個(gè)獨(dú)立的文本文件。

  4. 實(shí)現(xiàn)一個(gè)方法來(lái)讀取指定章節(jié)的內(nèi)容,并在文本區(qū)域中顯示。

  5. 實(shí)現(xiàn)上一頁(yè)、下一頁(yè)、跳轉(zhuǎn)到指定章節(jié)等按鈕的功能。例如,點(diǎn)擊下一頁(yè)按鈕時(shí),讀取當(dāng)前章節(jié)的下一章,并在文本區(qū)域中顯示。

  6. 可以為每一章節(jié)創(chuàng)建一個(gè)書簽,以便用戶可以隨時(shí)回到之前閱讀的章節(jié)。

以下是一個(gè)簡(jiǎn)單的示例代碼:

import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;

public class NovelReader extends JFrame implements ActionListener {
    private JTextArea contentArea;
    private JButton prevButton;
    private JButton nextButton;
    private JButton jumpButton;

    private Novel novel;
    private int currentChapter;

    public NovelReader() {
        // 初始化界面
        contentArea = new JTextArea();
        prevButton = new JButton("上一頁(yè)");
        nextButton = new JButton("下一頁(yè)");
        jumpButton = new JButton("跳轉(zhuǎn)");

        prevButton.addActionListener(this);
        nextButton.addActionListener(this);
        jumpButton.addActionListener(this);

        JPanel controlPanel = new JPanel();
        controlPanel.add(prevButton);
        controlPanel.add(nextButton);
        controlPanel.add(jumpButton);

        getContentPane().add(contentArea, BorderLayout.CENTER);
        getContentPane().add(controlPanel, BorderLayout.SOUTH);

        // 初始化小說
        novel = new Novel("小說名稱", "作者", 10); // 假設(shè)有10章
        currentChapter = 1; // 默認(rèn)從第一章開始閱讀

        // 顯示第一章內(nèi)容
        displayChapterContent(currentChapter);

        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(600, 400);
        setVisible(true);
    }

    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == prevButton) {
            if (currentChapter > 1) {
                currentChapter--;
                displayChapterContent(currentChapter);
            }
        } else if (e.getSource() == nextButton) {
            if (currentChapter < novel.getChapterCount()) {
                currentChapter++;
                displayChapterContent(currentChapter);
            }
        } else if (e.getSource() == jumpButton) {
            String input = JOptionPane.showInputDialog("請(qǐng)輸入要跳轉(zhuǎn)的章節(jié)");
            try {
                int jumpChapter = Integer.parseInt(input);
                if (jumpChapter >= 1 && jumpChapter <= novel.getChapterCount()) {
                    currentChapter = jumpChapter;
                    displayChapterContent(currentChapter);
                } else {
                    JOptionPane.showMessageDialog(this, "章節(jié)不存在");
                }
            } catch (NumberFormatException ex) {
                JOptionPane.showMessageDialog(this, "輸入不合法");
            }
        }
    }

    private void displayChapterContent(int chapter) {
        try (BufferedReader reader = new BufferedReader(new FileReader("chapter" + chapter + ".txt"))) {
            StringBuilder sb = new StringBuilder();
            String line;
            while ((line = reader.readLine()) != null) {
                sb.append(line).append("\n");
            }
            contentArea.setText(sb.toString());
            setTitle(novel.getName() + " - 第" + chapter + "章");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        new NovelReader();
    }
}

class Novel {
    private String name;
    private String author;
    private int chapterCount;

    public Novel(String name, String author, int chapterCount) {
        this.name = name;
        this.author = author;
        this.chapterCount = chapterCount;
    }

    public String getName() {
        return name;
    }

    public String getAuthor() {
        return author;
    }

    public int getChapterCount() {
        return chapterCount;
    }
}

在這個(gè)示例中,假設(shè)小說的內(nèi)容已經(jīng)按照章節(jié)保存在了名為chapter1.txt、chapter2.txt等的文本文件中。點(diǎn)擊上一頁(yè)、下一頁(yè)按鈕時(shí),會(huì)讀取當(dāng)前章

0