爬虫只爬目录无法获取正文

import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

import java.io.*;

public class Demo {
public static void main(String[] args) throws Exception {
String indexUrL = "https://read.qidian.com/chapter/iVn6PoNr74OLTMDvzUJZaQ2/wST3IXRJQppp4rPq4Fd4KQ2/";
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("C:\Users\lenovo\IdeaProjects\untitled2\小说\1.txt")));
while (true){
CloseableHttpClient httpClient = HttpClients.createDefault();
HttpGet httpGet = new HttpGet(indexUrL);
httpGet.setHeader("User-Agent","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36(KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36");
CloseableHttpResponse response = httpClient.execute(httpGet);
String html = EntityUtils.toString(response.getEntity(),"UTF-8");
Document document = Jsoup.parse(html);

        Elements chapterName = document.select(".j_chapterName");
        System.out.println(chapterName.text());
        bw.write(chapterName.text());
        bw.newLine();
        bw.flush();

        Elements pEl = document.select("[class=red-content j_readContent] p");
        for (Element p : pEl){
            bw.write(p.text());
            System.out.println(p.text());
            bw.newLine();
            bw.flush();
        }
        Elements aEl = document.select("#j_chapterNext[href*=chapter]");
        if (aEl == null || aEl.size() == 0){
            break;
        }
        Object nextUrl = aEl.attr("href");
        indexUrL = "http:" + nextUrl;
        System.out.println(indexUrL);
        httpClient.close();
    }
}

}
我这个爬虫为什么只爬标题不爬正文

类名是不是错了

img