您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Java怎么實現簡單的模板渲染,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
Java的基本數據類型分為:1、整數類型,用來表示整數的數據類型。2、浮點類型,用來表示小數的數據類型。3、字符類型,字符類型的關鍵字是“char”。4、布爾類型,是表示邏輯值的基本數據類型。
具體內容如下
代碼
package com.hdwang; import java.util.HashMap; import java.util.Map; /** * Created by hdwang on 2017/12/19. */ public class MyTemplate { public static void main(String[] args){ String template = "${name},${sex},${birthYear}年出生,${graduateYear}年畢業于${university}。"; Map<String,String> params = new HashMap<>(); params.put("name","張三"); params.put("sex","男"); params.put("birthYear","1990"); params.put("graduateYear","2012"); params.put("university","清華大學"); long start = System.currentTimeMillis(); for(int i=0;i<10000;i++) { String result = render(template, params); if(i==9999) { System.out.println(result); } } long end = System.currentTimeMillis(); System.out.println("cost time:"+(end-start)+"ms"); start = System.currentTimeMillis(); for(int i=0;i<10000;i++) { String result = render2(template, params); if(i==9999) { System.out.println(result); } } end = System.currentTimeMillis(); System.out.println("cost time:"+(end-start)+"ms"); } public static String render(String template,Map<String,String> params){ //使用builder拼接,比string相加提高不少效率 StringBuilder builder = new StringBuilder(); //定義控制變量 boolean $Begin = false; boolean paramBegin = false; //boolean paramEnd = false; StringBuilder key = null; //循環匹配 for(int i=0;i<template.length();i++){ char c = template.charAt(i); //開始標識 if(c=='$'){ $Begin = true; } if($Begin && c=='{'){ paramBegin = true; builder.deleteCharAt(builder.length()-1); //刪除添加的$字符 key = new StringBuilder(); continue; } //參數key if(paramBegin && c!='}'){ if(c=='{'){ System.out.println("模板格式錯誤!位置:"+i); }else { key.append(c); } continue; } //結束標識 if(paramBegin && c=='}'){ //paramEnd = true; //拼接參數key對應的值 builder.append(params.get(key.toString())); //重置控制變量 $Begin = false; paramBegin = false; //paramEnd = false; continue; } //默認情況 builder.append(c); //添加字符 } return builder.toString(); } public static String render2(String template,Map<String,String> params){ for(Map.Entry<String,String> entry:params.entrySet()){ String key = entry.getKey(); String value = entry.getValue(); template = template.replace("${"+key+"}",value); } return template; } }
運行結果
張三,男,1990年出生,2012年畢業于清華大學。
cost time:65ms
張三,男,1990年出生,2012年畢業于清華大學。
cost time:161ms
關于“Java怎么實現簡單的模板渲染”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。