0

ばかげた初心者の質問。を使用して電子メール メッセージ本文を生成できます。

email.setMsg("Paragraph 1 goes here."); 

出力:

Paragraph 1 goes here.

今、私が生成したいものは次のようになります:

Paragraph 1 goes here.
Paragraph 2 goes here.

しかし、私が使用する場合:

email.setMsg("Paragraph 1 goes here."); 
email.setMsg("Paragraph 2 goes here."); 

私が得るのは次のとおりです。

Paragraph 2 goes here.

手動で改行を追加するには?

4

1 に答える 1

2

UNIX システムを使用していると仮定します。

email.setMsg("Paragraph 1 goes here.\nParagraph 2 goes here."); 

コードプラットフォームに依存しないようにするには、次を使用して改行を検索できますSystem.getProperty("line.separator")

String ENDL = System.getProperty("line.separator");
email.setMsg("Paragraph 1 goes here." + ENDL + "Paragraph 2 goes here."); 

HTML メールを使用する場合:

email.setMsg("<p>Paragraph 1 goes here.</p><p>Paragraph 2 goes here.</p>"); 
于 2013-06-27T02:28:24.060 に答える