溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java怎么實(shí)現(xiàn)簡(jiǎn)單的模板渲染

發(fā)布時(shí)間:2021-04-26 12:29:21 來源:億速云 閱讀:268 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)Java怎么實(shí)現(xiàn)簡(jiǎn)單的模板渲染,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

java基本數(shù)據(jù)類型有哪些

Java的基本數(shù)據(jù)類型分為:1、整數(shù)類型,用來表示整數(shù)的數(shù)據(jù)類型。2、浮點(diǎn)類型,用來表示小數(shù)的數(shù)據(jù)類型。3、字符類型,字符類型的關(guān)鍵字是“char”。4、布爾類型,是表示邏輯值的基本數(shù)據(jù)類型。

具體內(nèi)容如下

代碼

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}年畢業(yè)于${university}。";
  Map<String,String> params = new HashMap<>();
  params.put("name","張三");
  params.put("sex","男");
  params.put("birthYear","1990");
  params.put("graduateYear","2012");
  params.put("university","清華大學(xué)");

  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;

  //循環(huán)匹配
  for(int i=0;i<template.length();i++){
   char c = template.charAt(i);
   //開始標(biāo)識(shí)
   if(c=='$'){
    $Begin = true;
   }
   if($Begin && c=='{'){
    paramBegin = true;
    builder.deleteCharAt(builder.length()-1); //刪除添加的$字符

    key = new StringBuilder();
    continue;
   }

   //參數(shù)key
   if(paramBegin && c!='}'){
    if(c=='{'){
     System.out.println("模板格式錯(cuò)誤!位置:"+i);
    }else {
     key.append(c);
    }
    continue;
   }

   //結(jié)束標(biāo)識(shí)
   if(paramBegin && c=='}'){
    //paramEnd = true;
    //拼接參數(shù)key對(duì)應(yīng)的值
    builder.append(params.get(key.toString()));

    //重置控制變量
    $Begin = false;
    paramBegin = false;
    //paramEnd = false;
    continue;
   }

   //默認(rèn)情況
   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;
 }
}

運(yùn)行結(jié)果

張三,男,1990年出生,2012年畢業(yè)于清華大學(xué)。
cost time:65ms
張三,男,1990年出生,2012年畢業(yè)于清華大學(xué)。
cost time:161ms

關(guān)于“Java怎么實(shí)現(xiàn)簡(jiǎn)單的模板渲染”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI