All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mingsoft.parser.impl.general.GlobalHostParser Maven / Gradle / Ivy

The newest version!
/**
The MIT License (MIT) * Copyright (c) 2016 铭飞科技(mingsoft.net)

 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:

 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.

 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

package com.mingsoft.parser.impl.general;

import com.mingsoft.parser.IParser;

/**
 * 
 * 
 * 
 * 

* 铭飞科技 *

* *

* Copyright: Copyright (c) 2014 - 2015 *

* * @author 王天培 * QQ:78750478 * *

* Comments:网站主机地址 *

* *

* Create Date:2014-10-22 *

* *

* Modification history: *

*/ public class GlobalHostParser extends IParser { /** * 网站路径标签,单标签,主要用于提交列表等HTML的路径到相应的action中 网站全局标签 {ms:global.url/} */ private final static String GLOBAL_HOST="\\{ms:global.host/\\}"; /** * 构造标签的属性 * @param htmlContent原HTML代码 * @param newContent替换的内容 */ public GlobalHostParser(String htmlContent,String newContent){ super.htmlCotent = htmlContent; super.newCotent = newContent; } @Override public String parse() { return super.replaceAll(GLOBAL_HOST); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy