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

📄 urlutility.java

📁 VHDL制作的ann的code
💻 JAVA
字号:
/* * Encog Neural Network and Bot Library for Java v1.x * http://www.heatonresearch.com/encog/ * http://code.google.com/p/encog-java/ *  * Copyright 2008, Heaton Research Inc., and individual contributors. * See the copyright.txt in the distribution for a full listing of  * individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */package org.encog.bot.html;import java.io.File;import java.io.IOException;import java.net.URL;/** * URLUtility: A set of useful utilities for processing URL's. */public final class URLUtility {	/**	 * Private constructor.	 */	private URLUtility() {	}	/**	 * Beyond this number are special chars.	 */	public static final int SPECIAL_CHAR_LIMIT = 255;	/**	 * The name of the usual default document.	 */	public static final String INDEX_FILE = "index.html";	/**	 * Construct a URL from its basic parts.	 * 	 * @param base	 *            The base URL.	 * @param url	 *            The URL that was found on the base URL's page.	 * @param stripRef	 *            True if the URL's reference should be stripped.	 * @return The new URL, built upon the base URL.	 * @throws IOException	 *             Thrown if any IO error occurs.	 */	public static URL constructURL(final URL base, final String url,			final boolean stripRef) throws IOException {		URL result = new URL(base, url);		String file = result.getFile();		final String protocol = result.getProtocol();		final String host = result.getHost();		final int port = result.getPort();		final String ref = result.getRef();		final StringBuilder sb = new StringBuilder(file);		int index = sb.indexOf(" ");		while (index != -1) {			if (index != -1) {				sb.replace(index, index + 1, "%20");			}			index = sb.indexOf(" ");		}		file = sb.toString();		if (ref != null && !stripRef) {			result = new URL(protocol, host, port, file + "#" + ref);		} else {			result = new URL(protocol, host, port, file);		}		return result;	}	/**	 * Returns true if the URL contains any invalid characters.	 * 	 * @param url	 *            The URL to be checked.	 * @return True if the URL contains invalid characters.	 */	public static boolean containsInvalidURLCharacters(final String url) {		for (int i = 0; i < url.length(); i++) {			final char ch = url.charAt(i);			if (ch > URLUtility.SPECIAL_CHAR_LIMIT) {				return true;			}		}		return false;	}	/**	 * Convert a filename for local storage. Also create the directory tree.	 * 	 * @param base	 *            The local path that forms the base of the downloaded web tree.	 * @param url	 *            The URL path.	 * @param mkdir	 *            Should the directory structure be created.	 * @return The resulting local path to store to.	 */	public static String convertFilename(final String base, final URL url,			final boolean mkdir) {		final StringBuilder result = new StringBuilder(base);		int index1;		int index2;		// append the host name		StringBuilder path = new StringBuilder(url.getHost().replace('.', '_'));		if (url.getFile().length() == 0) {			path.append('/');		} else {			path.append(url.getFile());		}		// add ending slash if needed		if (result.charAt(result.length() - 1) != File.separatorChar) {			result.append(File.separator);		}		// see if an ending / is missing from a directory only		int lastSlash = path.lastIndexOf("" + File.separatorChar);		final int lastDot = path.lastIndexOf(".");		if (path.charAt(path.length() - 1) != '/') {			if (lastSlash > lastDot) {				path.append(File.pathSeparatorChar);				path.append(URLUtility.INDEX_FILE);			}		}		// determine actual filename		lastSlash = path.lastIndexOf("/");		String filename = "";		if (lastSlash != -1) {			filename = path.substring(1 + lastSlash);			path = path.replace(1 + lastSlash, path.length(), "");			if (filename.equals("")) {				filename = URLUtility.INDEX_FILE;			}		}		// create the directory structure, if needed		index1 = 0;		do {			index2 = path.indexOf("/", index1);			if (index2 != -1) {				final String dirpart = path.substring(index1, index2);				result.append(dirpart);				result.append(File.separator);				if (mkdir) {					final File f = new File(result.toString());					f.mkdir();				}				index1 = index2 + 1;			}		} while (index2 != -1);		// attach name		result.append(filename.replace('?', '_'));		return result.toString();	}}

⌨️ 快捷键说明

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