32

我猜我收到这个错误是因为字符串试图子串一个null值。但是这".length() > 0"部分不会消除这个问题吗?

这是Java片段:

if (itemdescription.length() > 0) {
    pstmt2.setString(3, itemdescription.substring(0,38));
} 
else { 
    pstmt2.setString(3, "_");
} 

我收到了这个错误:

 java.lang.StringIndexOutOfBoundsException: String index out of range: 38
    at java.lang.String.substring(Unknown Source)
    at MASInsert2.itemimport(MASInsert2.java:192)
    at MASInsert2.processRequest(MASInsert2.java:125)
    at MASInsert2.doGet(MASInsert2.java:219)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:627)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
    at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:835)
    at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:640)
    at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
    at java.lang.Thread.run(Unknown Source)
4

13 回答 13

56

遗憾的是,substring它没有以处理短字符串的方式实现——就像在其他语言中一样,例如 Python。

好的,我们无法更改它,并且每次使用时都必须考虑这种边缘情况substr,而不是 if-else 子句,我会选择这个较短的变体:

myText.substring(0, Math.min(6, myText.length()))
于 2014-03-12T12:18:53.547 回答
36

我猜我收到这个错误是因为字符串试图对 Null 值进行子串化。但是“.length() > 0”部分不会消除这个问题吗?

不,当 itemdescription 为 null 时调用 itemdescription.length() 不会生成 StringIndexOutOfBoundsException,而是会生成 NullPointerException,因为您实际上是在尝试调用null上的方法。

正如其他人所指出的,StringIndexOutOfBoundsException 表明 itemdescription 的长度至少为 38 个字符。您可能想要处理这两种情况(我假设您要截断):

final String value;
if (itemdescription == null || itemdescription.length() <= 0) {
    value = "_";
} else if (itemdescription.length() <= 38) {
    value = itemdescription;
} else { 
    value = itemdescription.substring(0, 38);
}
pstmt2.setString(3, value);

如果您经常这样做,可能是实用功能的好地方...

于 2009-06-04T23:17:01.197 回答
11

我会推荐apache commons lang。单线可以解决这个问题。

pstmt2.setString(3, StringUtils.defaultIfEmpty(
    StringUtils.subString(itemdescription,0, 38), "_")); 
于 2009-06-05T11:46:13.787 回答
10

您确实需要检查字符串的长度是否大于或等于 38。

于 2009-06-04T22:55:34.517 回答
7

substring当您尝试从比字符串长的索引处获取子字符串时,Java 的方法会失败。

一个简单的替代方法是使用Apache CommonsStringUtils.substring

public static String substring(String str, int start)

Gets a substring from the specified String avoiding exceptions.

A negative start position can be used to start n characters from the end of the String.

A null String will return null. An empty ("") String will return "".

 StringUtils.substring(null, *)   = null
 StringUtils.substring("", *)     = ""
 StringUtils.substring("abc", 0)  = "abc"
 StringUtils.substring("abc", 2)  = "c"
 StringUtils.substring("abc", 4)  = ""
 StringUtils.substring("abc", -2) = "bc"
 StringUtils.substring("abc", -4) = "abc"

Parameters:
str - the String to get the substring from, may be null
start - the position to start from, negative means count back from the end of the String by this many characters

Returns:
substring from start position, null if null String input

注意,如果由于某种原因你不能使用 Apache Commons lib,你可以从源代码中获取你需要的部分

// Substring
//-----------------------------------------------------------------------
/**
 * <p>Gets a substring from the specified String avoiding exceptions.</p>
 *
 * <p>A negative start position can be used to start {@code n}
 * characters from the end of the String.</p>
 *
 * <p>A {@code null} String will return {@code null}.
 * An empty ("") String will return "".</p>
 *
 * <pre>
 * StringUtils.substring(null, *)   = null
 * StringUtils.substring("", *)     = ""
 * StringUtils.substring("abc", 0)  = "abc"
 * StringUtils.substring("abc", 2)  = "c"
 * StringUtils.substring("abc", 4)  = ""
 * StringUtils.substring("abc", -2) = "bc"
 * StringUtils.substring("abc", -4) = "abc"
 * </pre>
 *
 * @param str  the String to get the substring from, may be null
 * @param start  the position to start from, negative means
 *  count back from the end of the String by this many characters
 * @return substring from start position, {@code null} if null String input
 */
public static String substring(final String str, int start) {
    if (str == null) {
        return null;
    }

    // handle negatives, which means last n characters
    if (start < 0) {
        start = str.length() + start; // remember start is negative
    }

    if (start < 0) {
        start = 0;
    }
    if (start > str.length()) {
        return EMPTY;
    }

    return str.substring(start);
}
于 2016-08-17T19:14:38.150 回答
6

substring(0,38)表示字符串必须为 38 个字符或更长。如果不是,则“字符串索引超出范围”。

于 2009-06-04T22:56:41.953 回答
5
if (itemdescription != null && itemdescription.length() > 0) {
    pstmt2.setString(3, itemdescription.substring(0, Math.min(itemdescription.length(), 38))); 
} else { 
    pstmt2.setString(3, "_"); 
}
于 2009-06-04T22:58:25.163 回答
2

我假设您的列长度为 38 个字符,因此您希望截断 itemdescription以适合数据库。像下面这样的实用函数应该做你想做的事:

/**
 * Truncates s to fit within len. If s is null, null is returned.
 **/
public String truncate(String s, int len) { 
  if (s == null) return null;
  return s.substring(0, Math.min(len, s.length()));
}

然后你就这样称呼它:

String value = "_";
if (itemdescription != null && itemdescription.length() > 0) {
  value = truncate(itemdescription, 38);
}

pstmt2.setString(3, value);
于 2009-06-04T23:37:29.937 回答
2

itemdescription小于 38 个字符。这就是为什么StringOutOfBoundsException被抛出的原因。

检查.length() > 0只是确保String有一些非空值,您需要做的是检查长度是否足够长。你可以试试:

if(itemdescription.length() > 38)
  ...
于 2009-06-04T22:58:04.730 回答
0

在合适的情况下,我使用match而不是substring

带有子字符串

if( myString.substring(1,17).equals("Someting I expect") ) {
    // Do stuff
}
// Does NOT work if myString is too short

使用匹配项(必须使用正则表达式):

if( myString.matches("Someting I expect.*") ) {
    // Do stuff
}
// This works with all strings
于 2019-04-25T21:25:35.560 回答
0

您必须检查字符串长度。您假设substring(0,38)只要 String is not就可以这样做null,但实际上您需要 String 的长度至少为 38 个字符。

于 2016-08-17T19:20:03.163 回答
0

是否有人面临同样的问题。

这样做: str.substring (...(trim()) ;

希望它可以帮助别人

于 2020-10-11T08:37:54.567 回答
-1

如果 itemdescription 短于 38 个字符,你会得到这个

对于 String#substring(int,int),您可以查看抛出哪些异常以及何时在 JAVA API 中:https://docs.oracle.com/javase/9​​/docs/api/java/lang/String。 html#substring-int-int-

子字符串
公共字符串子字符串(int beginIndex,int endIndex)
   . . .

抛出:
 IndexOutOfBoundsException
 如果 beginIndex 为负数,
 或endIndex 大于此 String 对象的长度,
 或 beginIndex 大于 endIndex。



(同样适用于以前的 java 版本)
于 2018-06-13T09:19:00.370 回答