Here you can find the source of intFromString(String str, int dflt)
Parameter | Description |
---|---|
str | The string |
dflt | The default value |
public static int intFromString(String str, int dflt)
//package com.java2s; /********************************************************************** Copyright (c) 2004 Brendan de Beer and others. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at//from www . j av a 2 s.com http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Contributors: 2004 Brendan de Beer - Initial contributor for conversion methods 2005 Erik Bengtson - refactor mapping 2005 Andy Jefferson - added Timestamp/String converters ... **********************************************************************/ public class Main { /** * Convert a string into an integer. * Returns the default value if not convertable. * @param str The string * @param dflt The default value * @return The converted int value */ public static int intFromString(String str, int dflt) { try { Integer val = Integer.valueOf(str); return val.intValue(); } catch (NumberFormatException nfe) { return dflt; } } }