All Apps and Add-ons

splunk db connect: java.lang.StringIndexOutOfBoundsException: String index out of range

vijaynsheth
New Member

Splunk Enterprise: 7.2.5
Using Splunk DB Connect for Oracle and running into error when adding an Input and on "execute SQL"
message: java.lang.StringIndexOutOfBoundsException: String index out of range

Looked at various Answers but don't see any solution

0 Karma

markvanber
New Member

Since the string stores an array of characters, just like arrays the position of each character is represented by an index (starting from 0). If you try to access the character of a String at the index is either negative or greater than the size of the string, a StringIndexOutOfBoundsException is thrown. For some methods such as the java substring, charAt method, this exception also is thrown when the index is equal to the size of the string.

How to solve the StringIndexOutOfBoundsException

  • Check the length of the string before using substring()
  • Exception handling using try...catch.

 

0 Karma

Prewin27
New Member
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...