溫馨提示×

Java中怎么讓printwriter在頁面執(zhí)行

小億
108
2024-05-30 17:20:09
欄目: 編程語言

在 Java 中,可以使用 PrintWriter 將內(nèi)容輸出到頁面上。以下是一個簡單的例子:

import java.io.PrintWriter;
import java.io.IOException;

public class Main {
    public static void main(String[] args) {
        PrintWriter out = null;
        try {
            out = new PrintWriter("output.html");
            out.println("<html>");
            out.println("<head><title>Output Page</title></head>");
            out.println("<body>");
            out.println("<h1>Hello, World!</h1>");
            out.println("</body>");
            out.println("</html>");
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (out != null) {
                out.close();
            }
        }
    }
}

在上面的例子中,我們創(chuàng)建了一個 PrintWriter 對象,并將內(nèi)容輸出到一個名為 “output.html” 的文件中。在實(shí)際的 web 應(yīng)用程序中,可以將 PrintWriter 輸出到 response.getWriter(),這樣就可以在頁面上顯示內(nèi)容了。

0