歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux編程 >> Linux編程 >> Java中如何使用freemaker模版進行輸出

Java中如何使用freemaker模版進行輸出

日期:2017/3/1 10:00:36   编辑:Linux編程

在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>

Copyright © Linux教程網 All Rights Reserved