zoukankan      html  css  js  c++  java
  • java.lang.NumberFormatException

    1、错误描述

    Exception in thread "main" java.lang.NumberFormatException: For input string: "61.13226212525146"
    	at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
    	at java.lang.Integer.parseInt(Integer.java:492)
    	at java.lang.Integer.parseInt(Integer.java:527)
    	at com.you.utils.RandomUtils.findChart(RandomUtils.java:42)
    	at com.you.utils.RandomUtils.main(RandomUtils.java:58)
    

    2、错误原因

          数据格式错误,导致出错


    3、解决办法

    /**
     *
     * @title:RandomUtils.java
     * @Package:com.you.utils
     * @Description:<h3>一句话描述功能</h3>
     * @author:游海东
     * @date:2015-3-15下午5:19:36
     * @version V1.0
     *
     */
    package com.you.utils;
    
    /**
     *
     * 项目名称:SSH
     * 类名称:RandomUtils
     * 类描述:
     * 创建人:游海东
     * 创建时间:2015-3-15下午5:19:36
     * 修改人:游海东
     * 修改时间:2015-3-15下午5:19:36
     * 修改备注:
     * @version V1.0
     *
     */
    public class RandomUtils 
    {
    	/**
    	 * 
    	 * 方法名:findChart
    	 * 方法类型:RandomUtils
    	 * 参数:@param ch
    	 * 参数:@return
    	 * @return:String
    	 * @throws
    	 */
    	public static String findChart(int ch)
    	{
    		int num = (int)(Math.random()*1000);
    		String charToNumber = String.valueOf(num);
    		
    		return charToNumber;
    	}
    	
    	/**
    	 * 
    	 * 方法名:main
    	 * 方法类型:RandomUtils
    	 * 参数:@param args
    	 * @return :void
    	 * @throws
    	 */
       /* public static void main(String[] args)
        {
        	String str = findChart(2);
        	System.out.println(str);
        }*/
    }
    


  • 相关阅读:
    POJ 1987
    POJ 3107
    POJ 1984
    POJ 1985
    【50】目标检测之目标定位
    【49】计算机视觉现状
    【48】数据扩充(Data augmentation)
    【47】迁移学习(Transfer Learning)
    【46】谷歌 Inception 网络简介Inception(2)
    【45】谷歌 Inception 网络简介Inception(1)
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13314621.html
Copyright © 2011-2022 走看看