阅读量:0
substring()
方法用于从一个字符串中提取一部分字符并返回新的字符串。在处理异常情况时,可以采用以下方法:
- 检查参数范围:确保传递给
substring()
方法的开始索引(包括)和结束索引(不包括)在字符串的有效范围内。例如:
public String safeSubstring(String input, int startIndex, int endIndex) { if (input == null) { return ""; } if (startIndex < 0) { startIndex = 0; } if (endIndex > input.length()) { endIndex = input.length(); } if (startIndex >= endIndex) { return ""; } return input.substring(startIndex, endIndex); }
- 使用 try-catch 语句捕获异常:如果你希望在发生异常时执行特定操作,可以使用 try-catch 语句捕获异常。例如:
public String safeSubstring(String input, int startIndex, int endIndex) { String result = ""; try { result = input.substring(startIndex, endIndex); } catch (IndexOutOfBoundsException e) { // 在这里处理异常,例如记录日志或返回默认值 System.err.println("Error: " + e.getMessage()); } return result; }
- 使用 Optional 类处理空值:在 Java 8 及更高版本中,可以使用
Optional
类来处理可能为空的字符串。例如:
public String safeSubstring(String input, int startIndex, int endIndex) { return Optional.ofNullable(input) .map(s -> s.substring(startIndex, endIndex)) .orElse(""); }
这些方法可以帮助你在处理异常情况时确保代码的稳定性和健壮性。