Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8795013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T23:19:45+00:00 2026-06-13T23:19:45+00:00

This is my below code which converts string to long datatype. /** * Parses

  • 0

This is my below code which converts string to long datatype.

/**
     * Parses a String into primitive long
     * @param str
     * @return
     */
public static long parseLong(String str){
        try {
            long result = Long.parseLong(str);
            return result;
        } catch(NumberFormatException ex){
            //do nothing or log it
            return 0L;
    }
}

But for this String 2006-09-11 22:01:13 whenever it is passed to the above parseLong method, I always get this exception-

java.lang.NumberFormatException: For input string: "2006-09-11 22:01:13"

I need to convert String to Long. And in this method any type of String can be passed. So while I was debugging the code, I found out that it is throwing exception for this string- "2006-09-11 22:01:13". As far as my understanding goes, it shouldn’t be throwing exception right? as we can convert any string to long by using Long.parseLong method right?

Can anyone explain why I am getting this exception? As I am confuse now.. :-/

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T23:19:46+00:00Added an answer on June 13, 2026 at 11:19 pm

    Strings with special characters can not directly parsed to long or int. If you want to parse it to long or any type replace the special character first with (“”).

    or otherwise if you want to parse the above string as date then use simpleDate format as like this

    SimpleDateFormat parser= new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
    java.util.Date d = null;
    
    try {
        d = parser.parse(str);
                System.out.println("Parsed date is "+d);
    } catch (java.text.ParseException e) {
        e.printStackTrace();
    }
    

    Then the output will be
    Parsed date is Mon Sep 11 22:01:13 IST 2006

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I code this function which converts all pipes into commas, and after that converting
I have this problem with the code below which converts number to ASCII 'number-text'.
I have a code like this below, which gives me a $link that equals
This code(below) suppose to add information to ToolTips which are taken from database(and the
I got the below code which I would like to convert to a string
I have this below code and it work fine header (content-type: text/xml); $xml =
This code below allows me to find the word error in all my files
This code below is for executing ls -l | wc -l. In the code,
This code below works in all web browsers except IE: <input type="text" name="passwordLogin" value="Password"
This code below doesn't work correctly since my MFC program is in unicode circumstance.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.