- 浏览: 197450 次
- 性别:
- 来自: 深圳
文章分类
最新评论
-
xueruipp:
应该还能用吧
坦克大战用到的图片素材 -
泽在1993:
...
坦克大战用到的图片素材 -
AzraelWarrior:
...
坦克大战用到的图片素材 -
edison87915:
...
Java OCR 图像智能字符识别技术,可识别中文 -
innger:
为了避免如此我们应该用如下格式:
什么格式啊?
能不能在页 ...
Spring mvc3自己手动写国际化
org.apache.commons.lang
Class StringUtils
java.lang.Object
org.apache.commons.lang.StringUtils
--------------------------------------------------------------------------------
public class StringUtils
extends Object
Operations on String that are null safe. 字符串是null安全的,不会抛出NullPointerException,都做了相应的处理。
IsEmpty/IsBlank - checks if a String contains text
IsEmpty/IsBlank – 检查字符串是否有内容。
Trim/Strip - removes leading and trailing whitespace
Trim/Strip – 删除字符串开始和结尾的空白符。
Equals - compares two strings null-safe
Equals – 比较两个字符串null安全。
IndexOf/LastIndexOf/Contains - null-safe index-of checks
IndexOf/LastIndexOf/Contains – null安全的索引检查。
IndexOfAny/LastIndexOfAny/IndexOfAnyBut/LastIndexOfAnyBut - index-of any of a set of Strings
IndexOfAny/LastIndexOfAny/IndexOfAnyBut/LastIndexOfAnyBut – 字符串集合索引检查。
ContainsOnly/ContainsNone - does String contains only/none of these characters
ContainsOnly/ContainsNone – 字符在字符串中出现一次或一次也没有出现。
Substring/Left/Right/Mid - null-safe substring extractions
Substring/Left/Right/Mid – null安全子串的提取。
SubstringBefore/SubstringAfter/SubstringBetween - substring extraction relative to other strings
SubstringBefore/SubstringAfter/SubstringBetween – 子串提取依赖其它字符串。
Split/Join - splits a String into an array of substrings and vice versa
Split/Join – 字符串拆分为子串的字符串数组,反之亦然。
Remove/Delete - removes part of a String
Remove/Delete – 删除部分字符串。
Replace/Overlay - Searches a String and replaces one String with another
Replace/Overlay – 替换字符串的部分字符。
Chomp/Chop - removes the last part of a String
Chomp/Chop – 删除字符串最后的字符。
LeftPad/RightPad/Center/Repeat - pads a String
LeftPad/RightPad/Center/Repeat – 补字符串。
UpperCase/LowerCase/SwapCase/Capitalize/Uncapitalize - changes the case of a String
UpperCase/LowerCase/SwapCase/Capitalize/Uncapitalize – 改变字符串的大小写。
CountMatches - counts the number of occurrences of one String in another
CountMatches – 计算一个字符或字符串在另外一个字符串出现的次数。
IsAlpha/IsNumeric/IsWhitespace/IsAsciiPrintable - checks the characters in a String
IsAlpha/IsNumeric/IsWhitespace/IsAsciiPrintable – 判断字符是否在字符串中。
DefaultString - protects against a null input String
DefaultString –null安全,null转换为字符串。
Reverse/ReverseDelimited - reverses a String
Reverse/ReverseDelimited – 反转字符串。
Abbreviate - abbreviates a string using ellipsis
Abbreviate – 缩写字符串用省略符。
Difference - compares two Strings and reports on their differences
Difference – 比较两个字符串并且返回不同。
LevensteinDistance - the number of changes needed to change one String into another
LevensteinDistance – 一个字符串改变为另一个字符串需要改变的数量。
The StringUtils class defines certain words related to String handling.
IsEmpty/IsBlank – 检查字符串是否有内容。
Trim/Strip - removes leading and trailing whitespace
Trim/Strip – 删除字符串开始和结尾的空白符。
Equals - compares two strings null-safe
Equals – 比较两个字符串null安全。
IndexOf/LastIndexOf/Contains - null-safe index-of checks
IndexOf/LastIndexOf/Contains – null安全的索引检查。
IndexOfAny/LastIndexOfAny/IndexOfAnyBut/LastIndexOfAnyBut - index-of any of a set of Strings
IndexOfAny/LastIndexOfAny/IndexOfAnyBut/LastIndexOfAnyBut – 字符串集合索引检查。
ContainsOnly/ContainsNone - does String contains only/none of these characters
ContainsOnly/ContainsNone – 字符在字符串中出现一次或一次也没有出现。
Substring/Left/Right/Mid - null-safe substring extractions
Substring/Left/Right/Mid – null安全子串的提取。
SubstringBefore/SubstringAfter/SubstringBetween - substring extraction relative to other strings
SubstringBefore/SubstringAfter/SubstringBetween – 子串提取依赖其它字符串。
Split/Join - splits a String into an array of substrings and vice versa
Split/Join – 字符串拆分为子串的字符串数组,反之亦然。
Remove/Delete - removes part of a String
Remove/Delete – 删除部分字符串。
Replace/Overlay - Searches a String and replaces one String with another
Replace/Overlay – 替换字符串的部分字符。
Chomp/Chop - removes the last part of a String
Chomp/Chop – 删除字符串最后的字符。
LeftPad/RightPad/Center/Repeat - pads a String
LeftPad/RightPad/Center/Repeat – 补字符串。
UpperCase/LowerCase/SwapCase/Capitalize/Uncapitalize - changes the case of a String
UpperCase/LowerCase/SwapCase/Capitalize/Uncapitalize – 改变字符串的大小写。
CountMatches - counts the number of occurrences of one String in another
CountMatches – 计算一个字符或字符串在另外一个字符串出现的次数。
IsAlpha/IsNumeric/IsWhitespace/IsAsciiPrintable - checks the characters in a String
IsAlpha/IsNumeric/IsWhitespace/IsAsciiPrintable – 判断字符是否在字符串中。
DefaultString - protects against a null input String
DefaultString –null安全,null转换为字符串。
Reverse/ReverseDelimited - reverses a String
Reverse/ReverseDelimited – 反转字符串。
Abbreviate - abbreviates a string using ellipsis
Abbreviate – 缩写字符串用省略符。
Difference - compares two Strings and reports on their differences
Difference – 比较两个字符串并且返回不同。
LevensteinDistance - the number of changes needed to change one String into another
LevensteinDistance – 一个字符串改变为另一个字符串需要改变的数量。
The StringUtils class defines certain words related to String handling.
StringUtils类是对字符串的处理。
null – null 空
empty - a zero-length string ("") 长度为0的字符串
space - the space character (' ', char 32) 间隔符
whitespace - the characters defined by Character.isWhitespace(char) 空格符
trim - the characters <= 32 as in String.trim()去掉字符串两边字符<=32
Version:
empty - a zero-length string ("") 长度为0的字符串
space - the space character (' ', char 32) 间隔符
whitespace - the characters defined by Character.isWhitespace(char) 空格符
trim - the characters <= 32 as in String.trim()去掉字符串两边字符<=32
Version:
$Id: StringUtils.java 492377 2007-01-04 01:20:30Z scolebourne $
Field Summary字段摘要
static String
EMPTY
The empty String "".空字符串。
static int
INDEX_NOT_FOUND
Represents a failed index search. 声明失败索引。
static String
EMPTY
The empty String "".空字符串。
static int
INDEX_NOT_FOUND
Represents a failed index search. 声明失败索引。
Constructor Summary构造方法摘要
StringUtils()
StringUtils instances should NOT be constructed in standard programming.StringUtils 所有方法都是静态方法,不能在程序中对其进行构造。
StringUtils()
StringUtils instances should NOT be constructed in standard programming.StringUtils 所有方法都是静态方法,不能在程序中对其进行构造。
Method Summary方法摘要
static String
abbreviate(String str, int maxWidth)
Abbreviates a String using ellipses.
static String
abbreviate(String str, int maxWidth)
Abbreviates a String using ellipses.
取得字符串的缩写,str:处理的字符串,maxWidth:宽度,从第一个字符开始[1,maxWidth),类似于substring(),返回一个新的字符串,它是此字符串的一个子字符串。
static String
abbreviate(String str, int offset, int maxWidth)
Abbreviates a String using ellipses.
static String
abbreviate(String str, int offset, int maxWidth)
Abbreviates a String using ellipses.
取得字符串的缩写,str:处理的字符串,maxWidth:宽度,从第offset个字符开始[offset,axWidth),类似于substring(),返回一个新的字符串,它是此字符串的一个子字符串。
static String
capitalise(String str)
Deprecated. Use the standardly named capitalize(String). Method will be removed in Commons Lang 3.0.
static String
capitalise(String str)
Deprecated. Use the standardly named capitalize(String). Method will be removed in Commons Lang 3.0.
过时了.用 capitalize(String),在Commons Lang 3.0已经没有此方法了。
static String
capitaliseAllWords(String str)
Deprecated. Use the relocated WordUtils.capitalize(String). Method will be removed in Commons Lang 3.0.
static String
capitaliseAllWords(String str)
Deprecated. Use the relocated WordUtils.capitalize(String). Method will be removed in Commons Lang 3.0.
过时了. 在Commons Lang 3.0已经没有此方法了。
static String
capitalize(String str)
Capitalizes a String changing the first letter to title case as per Character.toTitleCase(char).
static String
capitalize(String str)
Capitalizes a String changing the first letter to title case as per Character.toTitleCase(char).
将str手写字母大写,用于名称、头衔等
static String
center(String str, int size)
Centers a String in a larger String of size size using the space character (' ').
static String
center(String str, int size)
Centers a String in a larger String of size size using the space character (' ').
产生一个字符串返回,该字符串长度等于size,str位于新串的中心,其他位置补空格。
如果str为null,则返回null
如果size小于str的长度,则返回str本身
static String
center(String str, int size, char padChar)
Centers a String in a larger String of size size.
如果str为null,则返回null
如果size小于str的长度,则返回str本身
static String
center(String str, int size, char padChar)
Centers a String in a larger String of size size.
产生一个字符串返回,该字符串长度等于size,str位于新串的中心,其他位置补字符padChar。
如果str为null,则返回null
如果size小于str的长度,则返回str本身
static String
center(String str, int size, String padStr)
Centers a String in a larger String of size size.
如果str为null,则返回null
如果size小于str的长度,则返回str本身
static String
center(String str, int size, String padStr)
Centers a String in a larger String of size size.
产生一个字符串返回,该字符串长度等于size,str位于新串的中心,其他位置补字符串padStr。
如果str为null,则返回null
如果size小于str的长度,则返回str本身
static String
chomp(String str)
Removes one newline from end of a String if it's there, otherwise leave it alone.
如果str为null,则返回null
如果size小于str的长度,则返回str本身
static String
chomp(String str)
Removes one newline from end of a String if it's there, otherwise leave it alone.
以单个词为单位的反转
str=”I am yuanyuan !”;
chomp(str)=”! yuanyuan an I”;
static String
chomp(String str, String separator)
Removes separator from the end of str if it's there, otherwise leave it alone.
static String
chomp(String str, String separator)
Removes separator from the end of str if it's there, otherwise leave it alone.
以单个词为单位的反转,从separator开始
str=”I am yuanyuan !”;
chomp(str ,”!”)=” yuanyuan an I !”;
static String
chompLast(String str)
Deprecated. Use chomp(String) instead. Method will be removed in Commons Lang 3.0.
static String
chompLast(String str)
Deprecated. Use chomp(String) instead. Method will be removed in Commons Lang 3.0.
过时了.在Commons Lang 3.0已经没有此方法了
static String
chompLast(String str, String sep)
Deprecated. Use chomp(String,String) instead. Method will be removed in Commons Lang 3.0.
static String
chompLast(String str, String sep)
Deprecated. Use chomp(String,String) instead. Method will be removed in Commons Lang 3.0.
过时了.在Commons Lang 3.0已经没有此方法了
static String
chop(String str)
Remove the last character from a String.
static String
chop(String str)
Remove the last character from a String.
去掉字符串str的最后一个字符。如果字符串以"\r\n"结尾,则去掉它们。
static String
chopNewline(String str)
Deprecated. Use chomp(String) instead. Method will be removed in Commons Lang 3.0.
static String
chopNewline(String str)
Deprecated. Use chomp(String) instead. Method will be removed in Commons Lang 3.0.
过时了.在Commons Lang 3.0已经没有此方法了
static String
clean(String str)
Deprecated. Use the clearer named trimToEmpty(String). Method will be removed in Commons Lang 3.0.
static String
clean(String str)
Deprecated. Use the clearer named trimToEmpty(String). Method will be removed in Commons Lang 3.0.
过时了.在Commons Lang 3.0已经没有此方法了
static String
concatenate(Object[] array)
Deprecated. Use the better named join(Object[]) instead. Method will be removed in Commons Lang 3.0.
static String
concatenate(Object[] array)
Deprecated. Use the better named join(Object[]) instead. Method will be removed in Commons Lang 3.0.
过时了.在Commons Lang 3.0已经没有此方法了
static boolean
contains(String str, char searchChar)
Checks if String contains a search character, handling null.
static boolean
contains(String str, char searchChar)
Checks if String contains a search character, handling null.
当此字符串包含指定的字符searchChar 值序列时,返回 true;处理null。
static boolean
contains(String str, String searchStr)
Checks if String contains a search String, handling null.
static boolean
contains(String str, String searchStr)
Checks if String contains a search String, handling null.
当此字符串包含指定的字符串searchStr 值序列时,返回 true;处理null。
static boolean
containsIgnoreCase(String str, String searchStr)
Checks if String contains a search String irrespective of case, handling null.
static boolean
containsIgnoreCase(String str, String searchStr)
Checks if String contains a search String irrespective of case, handling null.
当此字符串包含指定的字符串searchStr 值序列时,忽略大小写,返回 true;处理null。
static boolean
containsNone(String str, char[] invalidChars)
Checks that the String does not contain certain characters.
static boolean
containsNone(String str, char[] invalidChars)
Checks that the String does not contain certain characters.
判断是否字符串str不包含字符数组invalidChars中的字符,如果含有则返回false。
static boolean
containsNone(String str, String invalidChars)
Checks that the String does not contain certain characters.
static boolean
containsNone(String str, String invalidChars)
Checks that the String does not contain certain characters.
判断是否字符串str不包含字符串invalidChars,如果含有则返回false。
static boolean
containsOnly(String str, char[] valid)
Checks if the String contains only certain characters.
static boolean
containsOnly(String str, char[] valid)
Checks if the String contains only certain characters.
判断是否字符串str包含字符数组valid中的字符,如果含有则返回true。
static boolean
containsOnly(String str, String validChars)
Checks if the String contains only certain characters.
static boolean
containsOnly(String str, String validChars)
Checks if the String contains only certain characters.
判断是否字符串str包含字符串invalidChars,如果含有则返回true。
static int
countMatches(String str, String sub)
Counts how many times the substring appears in the larger String.
static int
countMatches(String str, String sub)
Counts how many times the substring appears in the larger String.
计算字符串sub在字符串str中出现的次数。如果str为null或"",则返回0
static String
defaultIfEmpty(String str, String defaultStr)
Returns either the passed in String, or if the String is empty or null, the value of defaultStr.
static String
defaultIfEmpty(String str, String defaultStr)
Returns either the passed in String, or if the String is empty or null, the value of defaultStr.
如果str不是空或者null,返回str,否则返回defaultStr。
static String
defaultString(String str)
Returns either the passed in String, or if the String is null, an empty String ("").
static String
defaultString(String str)
Returns either the passed in String, or if the String is null, an empty String ("").
如果str不是空返回str,否则返回""。
static String
defaultString(String str, String defaultStr)
Returns either the passed in String, or if the String is null, the value of defaultStr.
static String
defaultString(String str, String defaultStr)
Returns either the passed in String, or if the String is null, the value of defaultStr.
如果str不为空,返回str,否则返回defaultStr
static String
deleteSpaces(String str)
Deprecated. Use the better localized deleteWhitespace(String). Method will be removed in Commons Lang 3.0.
static String
deleteSpaces(String str)
Deprecated. Use the better localized deleteWhitespace(String). Method will be removed in Commons Lang 3.0.
过时了.在Commons Lang 3.0已经没有此方法了
static String
deleteWhitespace(String str)
Deletes all whitespaces from a String as defined by Character.isWhitespace(char).
static String
deleteWhitespace(String str)
Deletes all whitespaces from a String as defined by Character.isWhitespace(char).
删除字符串中的所有空白符
static String
difference(String str1, String str2)
Compares two Strings, and returns the portion where they differ.
static String
difference(String str1, String str2)
Compares two Strings, and returns the portion where they differ.
比较两个字符串,返回不同的部分。
static boolean
equals(String str1, String str2)
Compares two Strings, returning true if they are equal.
static boolean
equals(String str1, String str2)
Compares two Strings, returning true if they are equal.
比较两个字符串是否相等。
static boolean
equalsIgnoreCase(String str1, String str2)
Compares two Strings, returning true if they are equal ignoring the case.
static boolean
equalsIgnoreCase(String str1, String str2)
Compares two Strings, returning true if they are equal ignoring the case.
比较两个字符串是否相等,区分大小写。
static String
escape(String str)
Deprecated. Use StringEscapeUtils.escapeJava(String) This method will be removed in Commons Lang 3.0
static String
escape(String str)
Deprecated. Use StringEscapeUtils.escapeJava(String) This method will be removed in Commons Lang 3.0
过时了.在Commons Lang 3.0已经没有此方法了
static String
getChomp(String str, String sep)
Deprecated. Use substringAfterLast(String, String) instead (although this doesn't include the separator) Method will be removed in Commons Lang 3.0.
static String
getChomp(String str, String sep)
Deprecated. Use substringAfterLast(String, String) instead (although this doesn't include the separator) Method will be removed in Commons Lang 3.0.
过时了.在Commons Lang 3.0已经没有此方法了
static int
getLevenshteinDistance(String s, String t)
Find the Levenshtein distance between two Strings.
static int
getLevenshteinDistance(String s, String t)
Find the Levenshtein distance between two Strings.
计算两个字符串 levenshtein 距离,在计算相似度是用到这个方法
static String
getNestedString(String str, String tag)
Deprecated. Use the better named substringBetween(String, String). Method will be removed in Commons Lang 3.0.
static String
getNestedString(String str, String tag)
Deprecated. Use the better named substringBetween(String, String). Method will be removed in Commons Lang 3.0.
过时了.在Commons Lang 3.0已经没有此方法了
static String
getNestedString(String str, String open, String close)
Deprecated. Use the better named substringBetween(String, String, String). Method will be removed in Commons Lang 3.0.
static String
getNestedString(String str, String open, String close)
Deprecated. Use the better named substringBetween(String, String, String). Method will be removed in Commons Lang 3.0.
过时了.在Commons Lang 3.0已经没有此方法了
static String
getPrechomp(String str, String sep)
Deprecated. Use substringBefore(String,String) instead (although this doesn't include the separator). Method will be removed in Commons Lang 3.0.
static String
getPrechomp(String str, String sep)
Deprecated. Use substringBefore(String,String) instead (although this doesn't include the separator). Method will be removed in Commons Lang 3.0.
过时了.在Commons Lang 3.0已经没有此方法了
static int
indexOf(String str, char searchChar)
Finds the first index within a String, handling null.
static int
indexOf(String str, char searchChar)
Finds the first index within a String, handling null.
返回字符searchChar在字符串str中第一次出现的位置。
如果searchChar没有在str中出现则返回-1,
如果str为null或"",则也返回-1
static int
indexOf(String str, char searchChar, int startPos)
Finds the first index within a String from a start position, handling null.
如果searchChar没有在str中出现则返回-1,
如果str为null或"",则也返回-1
static int
indexOf(String str, char searchChar, int startPos)
Finds the first index within a String from a start position, handling null.
返回字符searchChar从startPos开始在字符串str中第一次出现的位置。
如果从startPos开始searchChar没有在str中出现则返回-1,
如果str为null或"",则也返回-1
static int
indexOf(String str, String searchStr)
Finds the first index within a String, handling null.
如果从startPos开始searchChar没有在str中出现则返回-1,
如果str为null或"",则也返回-1
static int
indexOf(String str, String searchStr)
Finds the first index within a String, handling null.
返回字符串searchStr在字符串str中第一次出现的位置。
如果str为null或searchStr为null则返回-1,
如果searchStr为"",且str为不为null,则返回0,
如果searchStr不在str中,则返回-1
static int
indexOf(String str, String searchStr, int startPos)
Finds the first index within a String, handling null.
如果str为null或searchStr为null则返回-1,
如果searchStr为"",且str为不为null,则返回0,
如果searchStr不在str中,则返回-1
static int
indexOf(String str, String searchStr, int startPos)
Finds the first index within a String, handling null.
返回字符串searchStrr从startPos开始在字符串str中第一次出现的位置。
如果从startPos开始searchStrr没有在str中出现则返回-1,
如果str为null或"",则也返回-1
static int
indexOfAny(String str, char[] searchChars)
Search a String to find the first index of any character in the given set of characters.
如果从startPos开始searchStrr没有在str中出现则返回-1,
如果str为null或"",则也返回-1
static int
indexOfAny(String str, char[] searchChars)
Search a String to find the first index of any character in the given set of characters.
找出字符数组searchChars中的字符第一次出现在字符串str中的位置。
如果字符数组中的字符都不在字符串中,则返回-1
如果字符串为null或"",则返回-1
static int
indexOfAny(String str, String searchChars)
Search a String to find the first index of any character in the given set of characters.
如果字符数组中的字符都不在字符串中,则返回-1
如果字符串为null或"",则返回-1
static int
indexOfAny(String str, String searchChars)
Search a String to find the first index of any character in the given set of characters.
找出字符串searchChars中的字符第一次出现在字符串str中的位置。
如果字符串searchChars中的字符都不在字符串str中,则返回-1
如果searchChars或str为null或为"",则返回-1
static int
indexOfAny(String str, String[] searchStrs)
Find the first index of any of a set of potential substrings.
如果字符串searchChars中的字符都不在字符串str中,则返回-1
如果searchChars或str为null或为"",则返回-1
static int
indexOfAny(String str, String[] searchStrs)
Find the first index of any of a set of potential substrings.
找出字符数组searchStrs中的字符串第一次出现在字符串str中的位置。
如果字符串数组searchStrs中的字符都不在字符串str中,则返回-1
如果searchStrs或str为null或为"",则返回-1
static int
indexOfAnyBut(String str, char[] searchChars)
Search a String to find the first index of any character not in the given set of characters.
如果字符串数组searchStrs中的字符都不在字符串str中,则返回-1
如果searchStrs或str为null或为"",则返回-1
static int
indexOfAnyBut(String str, char[] searchChars)
Search a String to find the first index of any character not in the given set of characters.
找出字符串str中不在字符数组searchChars中的第一个字符的位置。
如果字符串中的所有字符都在字符数组中,则返回-1
如果字符串为null或"",则返回-1
static int
indexOfAnyBut(String str, String searchChars)
Search a String to find the first index of any character not in the given set of characters.
如果字符串中的所有字符都在字符数组中,则返回-1
如果字符串为null或"",则返回-1
static int
indexOfAnyBut(String str, String searchChars)
Search a String to find the first index of any character not in the given set of characters.
找出字符串str中不在字符串searchChars中的第一个字符的位置。
如果字符串str中的所有字符都在字符串searchChars中,则返回-1
如果字符串str或searchChars为null或"",则返回-1
static int
indexOfDifference(String str1, String str2)
Compares two Strings, and returns the index at which the Strings begin to differ.
如果字符串str中的所有字符都在字符串searchChars中,则返回-1
如果字符串str或searchChars为null或"",则返回-1
static int
indexOfDifference(String str1, String str2)
Compares two Strings, and returns the index at which the Strings begin to differ.
比较两个字符串,返回第一次不同的位置。
static boolean
isAlpha(String str)
Checks if the String contains only unicode letters.
static boolean
isAlpha(String str)
Checks if the String contains only unicode letters.
判断Str是否由字母组成。
static boolean
isAlphanumeric(String str)
Checks if the String contains only unicode letters or digits.
static boolean
isAlphanumeric(String str)
Checks if the String contains only unicode letters or digits.
判断Str是否由字母或数字组成。
static boolean
isAlphanumericSpace(String str)
Checks if the String contains only unicode letters, digits or space (' ').
static boolean
isAlphanumericSpace(String str)
Checks if the String contains only unicode letters, digits or space (' ').
判断Str是否由字母、数字或空格组成。
static boolean
isAlphaSpace(String str)
Checks if the String contains only unicode letters and space (' ').
static boolean
isAlphaSpace(String str)
Checks if the String contains only unicode letters and space (' ').
【摘自网络】
发表评论
-
Java创建WebService服务及客户端实现
2014-02-26 10:48 6136WebService是一种服务的 ... -
新浪博客那样用户自己提交二级域名并自动解析是怎么实现的?
2013-11-27 09:24 809方法一 通过泛域名解析,将某个顶级域名下的所有的子域名都指向 ... -
【转】Java:Session详解
2013-01-18 14:06 966【转】Java:Session详解 书中讲: 以下情况,Se ... -
Eclipse 堆栈和内存大小设置
2012-11-09 00:26 10231, 设置Eclipse内存使用情况 修改ecl ... -
Target runtime Apache Tomcat 6.0 is not defined
2012-11-07 09:52 1005Eclipse导入工程后工程上显示一个小红叉,但工程里没有文 ... -
怎样在Eclipse中使用debug调试程序?
2012-10-10 10:20 0最基本的操作是: 1, 首先在一个java文件中设断点, ... -
Javascript跳转页面和打开新窗口等方法
2012-09-28 21:14 11961.在原来的窗体中 ... -
String与InputStream互转
2012-09-15 02:14 7171//String转inputStream 1. String ... -
Tomcat下面配置二级域名
2012-05-29 11:33 2515(1)开通二级域名支持,即house.map512.cn,pl ... -
Java OCR 图像智能字符识别技术,可识别中文
2012-05-22 15:34 2350几天一直在研究 OCR 技术,据我了解的情况,国内最专 ... -
上传组件
2012-05-02 23:19 925http://seyaa.iteye.com/blog/106 ... -
java实现简单的单点登录
2012-04-09 14:13 930http://www.blogjava.net/xcp/arc ... -
web service 实例
2012-02-20 11:18 863http://wenku.baidu.com/view/fac ... -
URI和URL的不同
2012-01-17 19:40 11981.什么是URI Web上可用的每种资源 - ... -
常用解决疑难杂症的网站
2012-01-09 09:28 955http://stackoverflow.com/questi ... -
java内部类详解
2012-01-05 13:56 1219内部类是指在一个外部类的内部再定义一个类。内部类作为外部类的一 ... -
iBATIS的多对多映射配置浅析
2011-12-28 16:58 920http://developer.51cto.com/art/ ... -
Spring security3 中文官方文档
2011-12-23 13:57 1040Spring security 3.0 官方翻译文档 -
Spring security 3.0 配置实例
2011-11-30 23:29 1055http://junjun16818.iteye.com/bl ... -
Java treemap 排序
2011-11-25 11:42 1910TreeMap 和 HashMap 用法大 ...
相关推荐
grrr - 或者 apaches 镜像选择被破坏 apaches 的镜像选择是如此惊人,我必须这样做才能从最近的镜像自动下载。 用法 ./grrr <file> 这将尝试找到靠近您的镜像并从那里下载文件。 如果找不到,则使用美国的镜子。 ...
@DEGA_Apaches特征I和II座的不同类型可以骑在连座上不同的加载项: 火箭/加农炮带4x AGM-114N(SAL2)的Hellifire * 4x AGM-114L 带4x AGM-114N(SAL2)的Hellifire * 4x AGM-114K 副驾驶激光指示器驾驶舱FLIR MFD ...
Apache Pig语法检查器为什么? 在我的日常工作中(作为一名开发人员),我发现自己正在编写负载。 随着时间的流逝,我对缺少PigLint和的开发工具的缺乏感到非常恼火。 我将继续关注此代码,我也完全欢迎拉取请求以使...
5个程序员刷题网站阿帕奇S4 概述 S4 是一个通用的、分布式的、可扩展的、部分容错的、可插拔的平台,它允许程序员轻松开发应用程序来处理连续的无界数据流。 S4 0.5.0 是对 S4 之前版本的完整重构。...
解决经常遇到的The import org.apache.commons.codec cannot be resolved问题,只需导入文件中的commons-codec-1.11.jar就可以,如和导入包就不赘述了。
这个包是在commons-codec1.14版本基础上修改了包名apache为apaches,解决了jar与内置jar包冲突,导致调用方法找不到的问题
最简单直接的办法就是利用Apaches配置文件httpd.conf,将不同的URL类型分发至不同的技术。 关键在于只有在您的httpd.conf文件中进行了相关定义,Django对某个特定的URL类型的驱动才会被激活。 SetHandler ...
此应用程序使用//目录的apaches mod重写规则,通过“ index.php”文件路由所有url,如下所示: ServerName www.blog.local DocumentRoot /opt/blogcms/main RewriteEngine On RewriteBase / ...
TuxMoT 是一个在 Linux ... TuxMoT 是用 Java SE 7 编写的,使用 GNU 的 RXTX 库和一些来自 Apaches Commons-cli 和 log4j API 的小参考。 目前,TuxMoT 仅支持控制台界面,但未来版本将包括 Curses 界面和 GKT+ 界面。
开放服务访问:Apaches RP管理工具 OSA是一种在点击播放模式下管理Apache反向代理的工具,它基于apache 2 Web服务器。 此外,它还提供了一些额外的功能,例如针对同一资源集或配额管理的双模式身份验证(HTTP基本...
PHPMyLogin 是一个基于安全模块的 LAMP(Linux、Apache、MySQL 和 PHP)身份验证系统。 它生成并使用 Apaches htaccess 进行身份验证。 它是安全的,并且像安全透明的 SSO(单点登录)解决方案一样工作。
该程序读取 ASCII 付款文件,并使用特殊的映射文件将其转换为 XML 格式,以确定要从 ASCII 文件中获取的标签名称和... 使用 Apaches Xerces-C 和 Xalan-C 库,许可:http://www.apache.org/licenses/LICENSE-2.0.txt
**Apache mod_ssl 插件详解** ... ### 一、mod_ssl 的主要功能 1. **加密通信**:mod_ssl 使用 SSL/TLS 协议对网络传输的数据进行加密,保证了用户的隐私和敏感信息的安全。 2. **身份验证**:通过数字证书机制,mod...
itsvenkis-java 我的项目数据结构 Java 集合包具有基于不同类型的二叉树(如红黑树和二叉堆树(集合和优先级队列))的实现,但这些树隐藏在... 对象池这个项目展示了如何使用 apaches 公共池在 JAVA 中动态创建对象池