请高手不吝赐教!谢谢!!

解决方案 »

  1.   

    它可能支持html 你可以从这方面想想办法
      

  2.   

    你从哪里看到TextField可以换行的?JavaDoc:
    A TextField object is a text component that allows for the editing of a single line of text. 想换行的话,用TextArea
      

  3.   


    换作TextArea之后,应该如何操作呢?
      

  4.   


    TextArea t = new TextArea();
    t.setText("\n");"\n"就表示换行。