Java tutorial
/** * Copyright (c) 2005-2012 https://github.com/zhangkaitao * * Licensed under the Apache License, Version 2.0 (the "License"); */ package cn.guoyukun.spring.web.form; import org.springframework.util.ObjectUtils; import org.springframework.web.util.HtmlUtils; /** * <p>User: * <p>Date: 13-3-28 ?5:14 * <p>Version: 1.0 */ public class ValueFormatter { public static String getDisplayString(Object value, boolean htmlEscape) { String displayValue = ObjectUtils.getDisplayString(value); return (htmlEscape ? HtmlUtils.htmlEscape(displayValue) : displayValue); } }