Common Java Exception issues

Source: Internet
Author: User

    1. Some considerations for recursive use:

Some considerations for recursive use:

When querying the database, prompt ORA-01830: date format picture ends the solution before converting the entire input string
Parameter 1 is the source string, and parameter 2 is the date form to convert to. But to_date limits the accuracy of both, such as To_date (' 2004-05-07 13:23:44 ', ' yyyy-mm-dd ') which cannot be converted.
Recursive method to have the object to receive, no person will have unpredictable problems.

//2017-04-03 2017/04/03  Public StaticString formatString (String dt)throwsparseexception{String back=NULL; if(NULL! = DT && Dt.contains ("/") ) {DateFormat df=NewSimpleDateFormat ("Yyyy/mm/dd"); if(Stringutils.isnotblank (dt)) { back=Df.format (df.parse (DT)); }  }Else{ Back= Dt.replace ("-", "/"); back= FormatString (back);//There 's no back here before, and sometimes it's a few seconds.  }//log.info ("converted date" +back);  returnBack ;}  Public Static voidMain (string[] args)throwsparseexception {String str= FormatString ("2017-12-16-16:32:36"); System.out.println (str); } 

Common Java Exception issues

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.