2017年11月14日 星期二

測試第一篇文章

這是內容
  1.  
  2. class Voila {
  3. public:
  4. // Voila
  5. static const string VOILA = "Voila";
  6.  
  7. // will not interfere with embedded tags.
  8. }
  1. def sendMail(subject):
  2. print(subject)
  3.  
  4. sendMail("Hello")
  1. /**
  2. * 讀取 word 範本與 POI 產生報告
  3. *
  4. * @author Rocky
  5. */
  6. public class WordReportDemo01 {
  7.  
  8. public static void main(String[] args) throws Exception {
  9. new WordReportDemo01().execute();
  10. }
  11. private void execute() throws Exception {
  12. Student student1 = new Student("子瑜", 79, "做的非常好");
  13. Student student2 = new Student("小明", 89, "記得多運動");
  14.  
  15. createWordFile(student1);
  16. createWordFile(student2);
  17. }
  18. }
  19.