Java中如何使用freemaker模版进行输出


在Java中如何使用freemaker模版进行输出呢?

首先你要有一个定义好的ftl文件,也就是最终输出的样式定义

<html>
<head>
<title></title>
</head>
<style type="text/css">

table {
 width: 800px;
 height: 400px;
 border: 2px solid black;
}

table thead tr td{
 text-align: center;
 border-right: 1px solid #C1DAD7;
 border-bottom: 1px solid #C1DAD7;
 background: #fff;
 font-size: 20px;
 font-weight: bold;
 color: #4f6b72;
}

.td1 {
 border-right: 1px solid #C1DAD7;
 border-bottom: 1px solid #C1DAD7;
 background: #fff;
 font-size: 14px;
 padding: 6px 6px 6px 12px;
 color: #4f6b72;
 width: 100px;
}

.td2 {
 border-right: 1px solid #C1DAD7;
 border-bottom: 1px solid #C1DAD7;
 background: #fff;
 font-size: 14px;
 padding: 6px 6px 6px 12px;
 color: #4f6b72;
 width: 500px;
}

</style>
<body>
 <center>
  <table>
   <thead>
    <tr>
     <td colspan='2'>AlertMail</td>
    </tr>
   </thead>
   <tr>
    <td class="td1">Mon_type</td>
    <td class="td2">${AM.monType}</td>
   </tr>
   <tr>
    <td class="td1">Alert_code</td>
    <td class="td2">${AM.alertCode}</td>
   </tr>
   <tr>
    <td class="td1">Alert_text</td>
    <td class="td2">${AM.alertText}</td>
   </tr>
   <tr>
    <td class="td1">Mon_date</td>
    <td class="td2">${AM.monDate}</td>
   </tr>
  </table>
 </center>
</body>
<html>

  • 1
  • 2
  • 下一页

相关内容

    暂无相关文章