Here you can find the source of toIntegerValue(String value)
Parameter | Description |
---|---|
value | a parameter |
public static int toIntegerValue(String value)
//package com.java2s; /**//from w w w . j a v a2 s. com * Copyright 2012 Dr. Krusche & Partner PartG * * AMES-Web-Service is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * AMES- Web-Service is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software. If not, see <http://www.gnu.org/licenses/>. * */ public class Main { /** * @param value * @return */ public static int toIntegerValue(String value) { try { return Float.valueOf(value).intValue(); } catch (NumberFormatException e) { e.printStackTrace(); } finally { } return 0; } }