JSP內建對象詳解

來源:互聯網
上載者:User

① out - javax.servlet.jsp.jspWriter
   out對象用於把結果輸出到網頁上。

方法:
1. void clear() ;
   清除輸出緩衝區的內容,但是不輸出到用戶端。

2. void clearBuffer() ;
   清除輸出緩衝區的內容,並輸出到用戶端。

3. void close() ;
   關閉輸出資料流,清除所有內容。

4. void flush() ;
   輸出緩衝區裡面的資料。

5. int getBufferSize() ;
   擷取以kb為單位的目前緩衝區大小。

6. int getRemaining() ;
   擷取以kb為單位的緩衝區中未被佔用的空間大小。

7. boolean isAutoFlush() ;
   是否自動重新整理緩衝區。

8. void newLine() ;
   輸出一個換行字元。

9. void print( boolean b ) ;
   void print( char c ) ;
   void print( char[] s ) ;
   void print( double d ) ;
   void print( float f ) ;
   void print( int i ) ;
   void print( long l ) ;
   void print( Object obj ) ;
   void print( String s ) ;
   將指定類型的資料輸出到Http流,不換行。

10. void println( boolean b ) ;
    void println( char c ) ;
    void println( char[] s ) ;
    void println( double d ) ;
    void println( float f ) ;
    void println( int i ) ;
    void println( long l ) ;
    void println( Object obj ) ;
    void println( String s ) ;
    將指定類型的資料輸出到Http流,並輸出一個分行符號。
   
11. Appendable append( char c ) ;
    Appendable append( CharSequence cxq, int start, int end ) ;
    Appendable append( CharSequence cxq ) ;
    將一個字元或者實現了CharSequence介面的對象添加到輸出資料流的後面。

<
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.