當前位置: 首頁>>代碼示例>>Java>>正文


Java HtmlUtils.htmlUnescape方法代碼示例

本文整理匯總了Java中org.springframework.web.util.HtmlUtils.htmlUnescape方法的典型用法代碼示例。如果您正苦於以下問題:Java HtmlUtils.htmlUnescape方法的具體用法?Java HtmlUtils.htmlUnescape怎麽用?Java HtmlUtils.htmlUnescape使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.springframework.web.util.HtmlUtils的用法示例。


在下文中一共展示了HtmlUtils.htmlUnescape方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: unescape

import org.springframework.web.util.HtmlUtils; //導入方法依賴的package包/類
public static String unescape(String html){
	if(html == null){
		return null;
	}
	
	return HtmlUtils.htmlUnescape(html);
}
 
開發者ID:KevinWorkman,項目名稱:StaticVoidGames,代碼行數:8,代碼來源:HtmlEscaper.java

示例2: createMessage

import org.springframework.web.util.HtmlUtils; //導入方法依賴的package包/類
private MimeMessage createMessage(String subject, String text) throws MessagingException {
    // create a message
    subject = HtmlUtils.htmlUnescape(subject);
    text = HtmlUtils.htmlUnescape(text);
    
    MimeMessage msg = new MimeMessage(session);
    msg.setFrom(new InternetAddress(from));
    InternetAddress address = new InternetAddress(receiver);
    msg.setRecipient(Message.RecipientType.TO, address);
    msg.setSubject(subject, "UTF-8");
    msg.setSentDate(new Date());
    msg.setText(text, "UTF-8");

    return msg;
}
 
開發者ID:Dica-Developer,項目名稱:weplantaforest,代碼行數:16,代碼來源:MailHelper.java

示例3: unescape

import org.springframework.web.util.HtmlUtils; //導入方法依賴的package包/類
public static String unescape(String content){
	return HtmlUtils.htmlUnescape(content);
}
 
開發者ID:wayshall,項目名稱:onetwo,代碼行數:4,代碼來源:XssUtils.java

示例4: transformValue

import org.springframework.web.util.HtmlUtils; //導入方法依賴的package包/類
/**
 * Transforms the given value.
 *
 * @param key   The key associated with the value being transformed.
 * @param value The value to be transformed.
 * @return      The transformed value.
 */
protected String transformValue(String key, String value) {
    return HtmlUtils.htmlUnescape(value);
}
 
開發者ID:Permafrost,項目名稱:TundraHTML.java,代碼行數:11,代碼來源:Decoder.java

示例5: decode

import org.springframework.web.util.HtmlUtils; //導入方法依賴的package包/類
/**
 * HTML decodes the given string.
 *
 * @param input The string to be decoded.
 * @return The decoded string.
 */
public static String decode(String input) {
    if (input == null) return null;
    return HtmlUtils.htmlUnescape(input);
}
 
開發者ID:Permafrost,項目名稱:TundraHTML.java,代碼行數:11,代碼來源:HTMLHelper.java


注:本文中的org.springframework.web.util.HtmlUtils.htmlUnescape方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。