在jsp页面中读取并显示本地文本文件时出现错误

在jsp页面中读取并显示本地文本文件时出现错误,第1张

在jsp页面中读取并显示本地文本文件时出现错误

您在第1行和第4行使用多个页面指令。使用其中之一。并检查下面的更新代码。

    <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="ISO-8859-1"%><%@page import="java.io.*"%><%@page import="java.net.URL"%> <!-- @page contentType="text/html" pageEncoding="UTF-8" --> <!--When I use this line has conflict error --><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>    <%        String jspPath = "C:\Users\Farshid\workspace\STPT\WebContent\file\title.txt";        BufferedReader reader = new BufferedReader(new FileReader(jspPath));        //BufferedReader br = new InputStreamReader(new FileInputStream(txtFilePath));        StringBuilder sb = new StringBuilder();        String line;        line = reader.readLine();        out.println(sb.toString());        System.out.println("line" +line);    %> <%=line %></title></head><body><p> <%=line %></p></body></html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5442224.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存