I have a String[], where each element is convertible to an integer. What’s the best way I can convert this to an int[]?
int[] StringArrayToIntArray(String[] s)
{
... ? ...
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Simply iterate through the string array and convert each element.
Note: If any of your elements fail to parse to an
intthis method will throw an exception. To keep that from happening each call toInteger.parseInt()should be placed in atry/catchblock.