⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 generator.java

📁 dwr 源文件 dwr 源文件 dwr 源文件
💻 JAVA
字号:
/*
 * Copyright 2005 Joe Walker
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package uk.ltd.getahead.dwrdemo.asmg;

import java.util.StringTokenizer;

/**
 * Generate an anti-spam mailto link from an email address.
 * The output link looks something like this (where $1 is the username part of
 * the address and $2 is the hostname part:
 * <pre>
 * Contact us using:
 * &lt;script type="text/javascript"&gt;
 * var a = $1 + "@" + $2;
 * document.write("&lt;a href='mail" + "to:" + a + "'&gt;" + a + "&lt;/a&gt;");
 * &lt;/script&gt;
 * &lt;noscript&gt;[$1 at $2]&lt;/noscript&gt;
 * </pre>
 * @author Joe Walker [joe at getahead dot ltd dot uk]
 */
public class Generator
{
    /**
     * Generate an anti-spam mailto link from an email address
     * @param name The person to contact
     * @param email The address to generate a link from
     * @return The HTML snippet
     */
    public String generateAntiSpamMailto(String name, String email)
    {
        StringTokenizer st = new StringTokenizer(email, "@"); //$NON-NLS-1$
        if (st.countTokens() != 2)
        {
            throw new IllegalArgumentException("Invalid email address: " + email); //$NON-NLS-1$
        }

        String before = st.nextToken();
        String after = st.nextToken();

        StringBuffer buffer = new StringBuffer();

        buffer.append("Contact "); //$NON-NLS-1$
        buffer.append(name);
        buffer.append(" using: <span id=\"asmgLink\"></span>\n"); //$NON-NLS-1$
        buffer.append("<script type='text/javascript'>\n"); //$NON-NLS-1$

        buffer.append("var before = '"); //$NON-NLS-1$
        buffer.append(before);
        buffer.append("';\n"); //$NON-NLS-1$;

        buffer.append("var after = '"); //$NON-NLS-1$
        buffer.append(after);
        buffer.append("';\n"); //$NON-NLS-1$;

        buffer.append("var link = \"<a href='mail\" + \"to:\" + before + '@' + after + \"'>\" + before + '@' + after + \"</a>\";\n"); //$NON-NLS-1$;

        buffer.append("document.getElementById(\"asmgLink\").innerHTML = link;\n"); //$NON-NLS-1$
        buffer.append("</script>\n"); //$NON-NLS-1$
        buffer.append("<noscript>["); //$NON-NLS-1$
        buffer.append(before);
        buffer.append(" at "); //$NON-NLS-1$
        buffer.append(after);
        buffer.append("]</noscript>\n"); //$NON-NLS-1$

        return buffer.toString();
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -